Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pbc_dump(1) [debian man page]

MAIN.C(1)						      Debian GNU/Linux manual							 MAIN.C(1)

NAME
pbc_dump - Dump or convert Parrot bytecode (PBC) files SYNOPSIS
pbc_dump [-tdh] [--terse|--disassemble|--header-only] file.pbc pbc_dump -o converted.pbc file.pbc DESCRIPTION
A program to dump pack files to human readable form. Command-Line Options "-d" Disassemble bytecode segments. "-h" Dump the bytecode header only. "-t" Terse output. "-o converted.pbc" Repacks a PBC file into the platform's native binary format for better efficiency on reading non-native PBCs. Functions "static void const_dump(PARROT_INTERP, const PackFile_Segment *segp)" Dump the constant table. "static void disas_dump(PARROT_INTERP, const PackFile_Segment *self)" Disassemble and dump. "static void nums_dump(PARROT_INTERP, const PackFile_Segment *self)" Disassembles and dumps op names and line numbers only. "static void null_dump(PARROT_INTERP, const PackFile_Segment *self)" Produces no output for the given segment type. "static void null_dir_dump(PARROT_INTERP, const PackFile_Segment *self)" Dumps all of the segments of the given PackFile_Directory, but produces no output for the directory itself. "static void PackFile_header_dump(PARROT_INTERP, PackFile *pf)" Dump the header. "static void help(void)" Print out the user help info. "int main(int argc, const char **argv)" The run loop. Process the command-line arguments and dump accordingly. SEE ALSO
src/packdump.c. Debian Project 2012-01-08 MAIN.C(1)

Check Out this Related Man Page

SVN::Dump::Headers(3pm) 				User Contributed Perl Documentation				   SVN::Dump::Headers(3pm)

NAME
SVN::Dump::Headers - Headers of a SVN dump record SYNOPSIS
# SVN::Dump::Headers objects are returned by the read_header_block() # method of SVN::Dump::Reader DESCRIPTION
A "SVN::Dump::Headers" object represents the headers of a SVN dump record. METHODS
"SVN::Dump::Headers" provides the following methods: new( [$hashref] ) Create and return a new empty "SVN::Dump::Headers" object. If $hashref is given (it can be a blessed hash reference), the keys from the hash are used to initialise the headers. set($h, $v) Set the $h header to the value $v. "_" can be used as a replacement for "-" in the header name. get($h) Get the value of header $h. "_" can be used as a replacement for "-" in the header name. keys() Return the list of headers, in canonical order. as_string() Return a string that represents the record headers. type() It is possible to guess the record type from its headers. This method returns a string that represents the record type. The string is one of "revision", "node", "uuid" or "format". The method dies if it can't determine the record type. ENCAPSULATION
When using "SVN::Dump" to manipulate a SVN dump, one should not directly access the "SVN::Dump::Headers" component of a "SVN::Dump::Record", but use the "set_header()" and "get_header()" methods of the record object. SEE ALSO
"SVN::Dump::Record". COPYRIGHT
Copyright 2006-2011 Philippe 'BooK' Bruhat, All Rights Reserved. LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2011-03-22 SVN::Dump::Headers(3pm)
Man Page