Searched refs:input (Results 26 - 50 of 373) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/gdb/libiberty/
H A Dargv.c144 pointers to copies of the string for each field. The input string
157 If the input is a null string (as opposed to a @code{NULL} pointer),
167 sequences, we allocate a working buffer at least as long as the input
169 work, since the extracted arg is never larger than the input string.
177 char **buildargv (input)
178 const char *input;
190 if (input != NULL)
192 copybuf = (char *) alloca (strlen (input) + 1);
198 while (ISBLANK (*input))
200 input
[all...]
/haiku-fatelf/src/add-ons/media/media-add-ons/writer/
H A DMediaWriter.cpp7 // It consumes on input, which is a multistream,
64 strncpy(input.name,"MediaWriter Input",B_MEDIA_NAME_LENGTH-1);
65 input.name[B_MEDIA_NAME_LENGTH-1] = '\0';
66 // initialize the input
67 input.node = media_node::null; // until registration
68 input.source = media_source::null;
69 input.destination = media_destination::null; // until registration
70 GetFormat(&input.format);
109 input.node = Node();
110 input
[all...]
/haiku-fatelf/src/bin/keymap/
H A Dmain.cpp33 printf("usage: %s {-o <output-file>} [-[l|r] | -[b|h|c|d <input-file>]]\n"
39 " -l, --load Load key map. If no input-file is specified, it "
41 " read from standard input.\n"
42 " -s, --load-source Load source key map from standard input when no\n"
43 " input-file is specified.\n"
91 const char* input = NULL; local
125 input = optarg;
130 input = optarg;
134 input = optarg;
141 input
[all...]
/haiku-fatelf/src/bin/gdb/libiberty/testsuite/
H A Dtest-demangle.c44 /* Safely read a single line of arbitrary length from standard input. */
107 input to be demangled
114 --is-v3-ctor Calls is_gnu_v3_mangled_ctor on input; expected
133 struct line input; local
146 input.data = 0;
155 getline (&input);
235 kc = is_gnu_v3_mangled_ctor (input.data);
242 kd = is_gnu_v3_mangled_dtor (input.data);
248 fail (lineno, format.data, input.data, buf, expect.data);
257 result = cplus_demangle (input
[all...]
/haiku-fatelf/src/bin/bc/dc/
H A Ddc.c106 FILE *input; local
109 input = stdin;
110 } else if ( !(input=fopen(filename, "r")) ) {
115 if (dc_evalfile(input))
117 if (input != stdin)
118 fclose(input);
/haiku-fatelf/headers/private/package/hpkg/
H A DZlibCompressor.h31 status_t CompressNext(const void* input,
35 static status_t CompressSingleBuffer(const void* input,
H A DZlibDecompressor.h31 status_t DecompressNext(const void* input,
35 static status_t DecompressSingleBuffer(const void* input,
/haiku-fatelf/src/tools/docbook/libxml2/
H A Derror.c147 * @input: an xmlParserInputPtr input
149 * Displays the associated file and line informations for the current input
153 xmlParserPrintFileInfo(xmlParserInputPtr input) { argument
154 if (input != NULL) {
155 if (input->filename)
157 "%s:%d: ", input->filename,
158 input->line);
161 "Entity: line %d: ", input->line);
167 * @input
228 xmlParserPrintFileContext(xmlParserInputPtr input) argument
253 xmlParserInputPtr input = NULL; local
451 xmlParserInputPtr input = NULL; local
673 xmlParserInputPtr input = NULL; local
716 xmlParserInputPtr input = NULL; local
765 xmlParserInputPtr input = NULL; local
809 xmlParserInputPtr input = NULL; local
[all...]
/haiku-fatelf/src/apps/cortex/InfoView/
H A DEndPointInfoView.h35 // Display input/output related info in the InfoWindow.
63 const media_input &input);
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Dylwrap50 INPUT is the input file
69 # The input.
70 input="$1"
72 case "$input" in
78 input="`pwd`/$input"
110 0) $prog "$input" ;;
111 *) $prog "$@" "$input" ;;
127 # The directory holding the input.
128 input_dir=`echo "$input" | se
[all...]
/haiku-fatelf/src/libs/pdflib/libs/pdcore/
H A Dpc_md5.h51 unsigned char buffer[64]; /* input buffer */
56 MD5_CTX *context, const unsigned char *input, unsigned int inputLen);
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dylwrap48 INPUT is the input file
67 # The input.
68 input="$1"
70 case "$input" in
76 input="`pwd`/$input"
108 0) "$prog" "$input" ;;
109 *) "$prog" "$@" "$input" ;;
125 # The directory holding the input.
126 input_dir=`echo "$input" | se
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dexternal_commands_beos.cpp32 get_external_command(const char *prompt, char *input, int len) argument
69 memcpy(input, message.command, commandLen);
70 input[len - 1] = '\0'; // always NULL-terminate
72 return input;
/haiku-fatelf/src/add-ons/kernel/debugger/qrencode/
H A Dqrencode.c112 __STATIC QRRawCode *QRraw_new(QRinput *input) argument
120 raw->datacode = QRinput_getByteStream(input);
126 QRspec_getEccSpec(input->version, input->level, spec);
128 raw->version = input->version;
211 __STATIC MQRRawCode *MQRraw_new(QRinput *input) argument
219 raw->version = input->version;
220 raw->dataLength = MQRspec_getDataLength(input->version, input->level);
221 raw->eccLength = MQRspec_getECCLength(input
463 QRcode_encodeMask(QRinput *input, int mask) argument
544 QRcode_encodeMaskMQR(QRinput *input, int mask) argument
626 QRcode_encodeInput(QRinput *input) argument
637 QRinput *input; local
680 QRinput *input; local
831 QRcode_encodeInputToStructured(QRinput *input) argument
850 QRinput *input; local
[all...]
/haiku-fatelf/build/scripts/
H A Dconvert_build_config_to_shell_format.pl8 This simple script converts its standard input from the jam-specific format
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/
H A DEbmlDate.cpp48 uint64 EbmlDate::ReadData(IOCallback & input, ScopeMode ReadFully) argument
55 input.readFully(Buffer, Size);
/haiku-fatelf/src/bin/network/wget/tests/
H A DTest-N--no-content-disposition-trivial.px42 input => \%urls,
H A DTest-N--no-content-disposition.px43 input => \%urls,
H A DTest-N.px42 input => \%urls,
H A DTest-auth-basic.px42 input => \%urls,
H A DTest-auth-no-challenge-url.px43 input => \%urls,
H A DTest-auth-no-challenge.px44 input => \%urls,
H A DTest-auth-with-content-disposition.px43 input => \%urls,
H A DTest-c-full.px50 input => \%urls,
H A DTest-c.px47 input => \%urls,

Completed in 226 milliseconds

1234567891011>>