HomeSort by relevance Sort by last modified time
    Searched refs:trailer (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/curl/tests/
serverhelp.pm 150 my $trailer = '_server.pid';
151 return '.'. servername_canon($proto, $ipver, $idnum) ."$trailer";
160 my $trailer = '_server.log';
161 $trailer = '_stunnel.log' if(lc($proto) =~ /^(ftp|http|imap|pop3|smtp)s$/);
162 return "${logdir}/". servername_canon($proto, $ipver, $idnum) ."$trailer";
171 my $trailer = '_server.cmd';
172 return "${logdir}/". servername_canon($proto, $ipver, $idnum) ."$trailer";
181 my $trailer = '_server.input';
182 return "${logdir}/". servername_canon($proto, $ipver, $idnum) ."$trailer";
191 my $trailer = '_server.output'
    [all...]
  /external/llvm/test/MC/AsmParser/
directive_rept-diagnostics.s 33 .global trailer
34 .type trailer,@object
35 trailer: label
36 .rep 0 trailer
39 # CHECK: .rep 0 trailer
  /external/llvm/test/MC/ARM/
directive-align.s 21 trailer: label
25 @ CHECK-LABEL: trailer
  /toolchain/binutils/binutils-2.25/libiberty/
alloca.c 300 include the fifteen word trailer area. */
313 this trailer). */
316 long link; /* Address of trailer block of previous
341 struct stk_trailer *trailer; local
354 trailer = (struct stk_trailer *) (status.current_address
359 a fatal error if "trailer" is null. */
361 if (trailer == 0)
366 while (trailer != 0)
368 block = (long *) trailer->this_address;
369 size = trailer->this_size
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
GZIPOutputStream.java 50 * Trailer size in bytes.
161 // last deflater buffer. Fit trailer at the end
170 // if we can't fit the trailer at the end of the last
172 byte[] trailer = new byte[TRAILER_SIZE];
173 writeTrailer(trailer, 0);
174 out.write(trailer);
197 * Writes GZIP member trailer to a byte array, starting at a given
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_execfile.py 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
21 power< 'execfile' trailer< '(' filename=any ')' > >
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
37 Node(syms.trailer, [LParen(), RParen()])]
fix_intern.py 20 trailer< lpar='('
40 [pytree.Node(syms.trailer,
  /external/curl/lib/
http_chunks.c 50 followed by an OPTIONAL trailer containing entity-header fields. This
57 trailer
69 trailer = *(entity-header CRLF)
73 zero, followed by the trailer, which is terminated by an empty line.
257 /* this is the end of a trailer, but if the trailer was zero bytes
258 there was no trailer and we move on */
261 /* we allocate trailer with 3 bytes extra room to fit this */
262 conn->trailer[conn->trlPos++]=0x0d;
263 conn->trailer[conn->trlPos++]=0x0a
    [all...]
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_execfile.py 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
21 power< 'execfile' trailer< '(' filename=any ')' > >
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
37 Node(syms.trailer, [LParen(), RParen()])]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_execfile.py 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
21 power< 'execfile' trailer< '(' filename=any ')' > >
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
37 Node(syms.trailer, [LParen(), RParen()])]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_execfile.py 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
21 power< 'execfile' trailer< '(' filename=any ')' > >
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
37 Node(syms.trailer, [LParen(), RParen()])]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
21 power< 'execfile' trailer< '(' filename=any ')' > >
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
37 Node(syms.trailer, [LParen(), RParen()])]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
21 power< 'execfile' trailer< '(' filename=any ')' > >
36 read = [Node(syms.trailer, [Dot(), Name(u'read')]),
37 Node(syms.trailer, [LParen(), RParen()])]
  /external/curl/lib/vauth/
krb5_sspi.c 277 unsigned char *trailer = NULL; local
381 /* Allocate the trailer */
382 trailer = malloc(sizes.cbSecurityTrailer);
383 if(!trailer)
389 free(trailer);
398 free(trailer);
418 free(trailer);
428 wrap_buf[0].pvBuffer = trailer;
443 free(trailer);
455 free(trailer);
    [all...]
  /external/walt/ios/WALT/
MIDIMessage.m 44 // Slice off any header/trailer bytes.
46 NSCAssert(bytes[message.length - 1] == MIDIMessageSysExEnd, @"SysEx message without trailer.");
63 [[NSMutableData alloc] initWithCapacity:body.length + 2]; // +2 for status and SysEx trailer
70 const MIDIByte trailer = MIDIMessageSysEx;
71 [message appendBytes:&trailer length:1];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
makefreeze.py 12 trailer = """\
70 outfp.write(trailer)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
gprof2html.py 16 trailer = """\
74 output.write(trailer)
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
reference.py 31 if nodes[i].type != symbol.trailer:
75 self._children.append(snippet.Symbol(symbol.trailer, token_snippets))
  /external/python/cpython2/Tools/freeze/
makefreeze.py 12 trailer = """\
70 outfp.write(trailer)
  /external/python/cpython2/Tools/scripts/
gprof2html.py 16 trailer = """\
74 output.write(trailer)
  /external/libcups/cups/
file.c 362 unsigned char trailer[8]; /* Trailer CRC and length */ local
391 trailer[0] = (unsigned char)fp->crc;
392 trailer[1] = (unsigned char)(fp->crc >> 8);
393 trailer[2] = (unsigned char)(fp->crc >> 16);
394 trailer[3] = (unsigned char)(fp->crc >> 24);
395 trailer[4] = (unsigned char)fp->pos;
396 trailer[5] = (unsigned char)(fp->pos >> 8);
397 trailer[6] = (unsigned char)(fp->pos >> 16);
398 trailer[7] = (unsigned char)(fp->pos >> 24)
2414 unsigned char trailer[8]; \/* Trailer bytes *\/ local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
graminit.h 69 #define trailer 322 macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
graminit.h 69 #define trailer 322 macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
symbol.py 79 trailer = 322 variable
  /external/python/cpython2/Include/
graminit.h 69 #define trailer 322 macro

Completed in 910 milliseconds

1 2 3 4 5 6 7 8