Searched refs:stream (Results 276 - 300 of 737) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/ParsePageContents/
H A Dparse_page_contents.py72 # Check if it is a stream type which it must be to be an XObject.
115 # An XObject must be a stream so obtain the value from the xobject
116 # as if it were a stream. If this fails, the PDF is malformed.
117 res, stream = CGPDFObjectGetValue(xobject, kCGPDFObjectTypeStream, None)
119 print >>sys.stderr, "XObject '%s' is not a stream"%(name,)
122 print stream
125 # with the stream. This code only cares about the dictionary.
126 dict = CGPDFStreamGetDictionary(stream);
128 print >>sys.stderr, "Couldn't obtain dictionary from stream %s!"%(name,)
154 # stream correspondin
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcrestst.c774 FileStream* stream = NULL; local
797 stream = T_FileStream_open(fileName, "r");
798 if(stream==NULL){
805 retLen=T_FileStream_read(stream,&c,1);
810 T_FileStream_rewind(stream);
811 T_FileStream_read(stream,&c1,1);
815 T_FileStream_rewind(stream);
816 c1 = T_FileStream_peek(stream);
820 c = T_FileStream_getc(stream);
821 T_FileStream_ungetc(c,stream);
[all...]
/macosx-10.10.1/xar-254/xar/lib/
H A Dio.c419 xar_attr_pset(f, tmpp, "style", "application/octet-stream");
619 static int32_t flush_stream(xar_stream *stream) { argument
620 xar_stream_state_t *state = (xar_stream_state_t *)(stream->state);
622 if( state->pending_buf && stream->avail_out ) {
625 if( stream->avail_out < len ) {
626 len = stream->avail_out;
629 memcpy(stream->next_out, state->pending_buf, len);
630 stream->next_out += len;
631 stream->avail_out -= len;
632 stream
648 write_to_stream(void *inbuf, size_t inlen, xar_stream *stream) argument
671 xar_attrcopy_from_heap_to_stream_init(xar_t x, xar_file_t f, xar_prop_t p, xar_stream *stream) argument
718 xar_attrcopy_from_heap_to_stream(xar_stream *stream) argument
787 xar_attrcopy_from_heap_to_stream_end(xar_stream *stream) argument
[all...]
H A Dio.h85 int32_t xar_attrcopy_from_heap_to_stream_init(xar_t x, xar_file_t f, xar_prop_t p, xar_stream *stream);
86 int32_t xar_attrcopy_from_heap_to_stream(xar_stream *stream);
87 int32_t xar_attrcopy_from_heap_to_stream_end(xar_stream *stream);
/macosx-10.10.1/IOAudioFamily-200.6/
H A DIOAudioEngine.cpp190 IOAudioStream * stream = NULL; local
194 stream = OSDynamicCast (IOAudioStream, reserved->streams->getObject(streamID));
197 return stream;
215 void IOAudioEngine::lockStreamForIO(IOAudioStream *stream) { argument
216 stream->lockStreamForIO();
220 void IOAudioEngine::unlockStreamForIO(IOAudioStream *stream) { argument
221 stream->unlockStreamForIO();
666 IOAudioStream *stream; local
675 while ( (stream = OSDynamicCast(IOAudioStream, iterator->getNextObject())) ) {
676 stream
822 IOAudioStream *stream; local
1273 addAudioStream(IOAudioStream *stream) argument
1342 IOAudioStream *stream; local
1397 IOAudioStream *stream; local
1409 IOAudioStream *stream; local
1426 IOAudioStream *stream; local
1438 IOAudioStream *stream; local
1464 IOAudioStream *stream; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/bibtex/
H A Dbibtex.tcl63 if {$state(stream)} {
75 set state(stream) 0
97 if {!$state(stream)} {
117 if {![info exists data($token,stream)]} {
120 if {$data($token,stream)} {
132 if {![info exists data($token,stream)]} {
212 set stream [info exists state(-channel)]
214 if {$stream} {
244 set state(stream) $stream
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_pixarlog.c456 z_stream stream; member in struct:__anon12930
678 if (inflateInit(&sp->stream) != Z_OK) {
679 TIFFErrorExt(tif->tif_clientdata, module, "%s: %s", tif->tif_name, sp->stream.msg);
697 sp->stream.next_in = tif->tif_rawdata;
698 sp->stream.avail_in = tif->tif_rawcc;
699 return (inflateReset(&sp->stream) == Z_OK);
735 sp->stream.next_out = (unsigned char *) sp->tbuf;
736 sp->stream.avail_out = nsamples * sizeof(uint16);
738 int state = inflate(&sp->stream, Z_PARTIAL_FLUSH);
745 tif->tif_name, tif->tif_row, sp->stream
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/zlib/
H A Dzlib.c239 * wrapper around a deflate stream which is described in RFC 1951.
243 * RFC 1952 which is also a wrapper around a deflate stream.
533 z_stream stream; member in struct:zstream
574 int flush; /* stream flush value for inflate() or deflate() */
575 int interrupt; /* stop processing the stream and return to ruby */
605 z->stream.zalloc = zlib_mem_alloc;
606 z->stream.zfree = zlib_mem_free;
607 z->stream.opaque = Z_NULL;
608 z->stream.msg = Z_NULL;
609 z->stream
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dabbrev.c476 write_abbrev (sym, stream)
477 Lisp_Object sym, stream;
497 Fprin1 (name, stream);
499 Fprin1 (SYMBOL_VALUE (sym), stream);
501 Fprin1 (XSYMBOL (sym)->function, stream);
503 Fprin1 (count, stream);
508 describe_abbrev (sym, stream)
509 Lisp_Object sym, stream;
528 Fprin1 (Fsymbol_name (sym), stream);
538 Fprin1 (count, stream);
496 Fprin1 (SYMBOL_VALUE (sym), stream); local
525 Fprin1 (Fsymbol_name (sym), stream); local
537 Fprin1 (SYMBOL_VALUE (sym), stream); local
569 Lisp_Object stream; variable
589 describe_abbrev (XCAR (symbols), stream); variable
602 write_abbrev (XCAR (symbols), stream); variable
[all...]
/macosx-10.10.1/IOFWDVComponents-207.4.1/
H A DDVLib.c289 static void closeStream(DVStream *stream);
1078 syslog(LOG_INFO, "DV PowerManagementNotificationCallback, Restarting input stream %d\n",i);
1091 syslog(LOG_INFO, "DV PowerManagementNotificationCallback, Restarting output stream %d\n",i);
1417 DVStream *stream; local
1423 stream = (DVStream *)((*interface)->GetRefCon(interface));
1425 if(*outMaxSpeed > stream->fMaxSpeed)
1426 *outMaxSpeed = stream->fMaxSpeed;
1427 *outChanSupported = stream->fChannelMask;
1441 DVStream *stream; local
1447 stream
1749 initStream(DVStream *stream, DVDevice *device, UInt32 plug, UInt32 channel, DVThread *thread) argument
1770 openStream(DVStream *stream, bool forWrite, UInt32 packetSize) argument
1913 closeStream(DVStream *stream) argument
2588 DVStream *stream; local
3589 DVStream *stream; local
[all...]
/macosx-10.10.1/postfix-255/postfix/src/posttls-finger/
H A Dposttls-finger.c421 VSTREAM *stream; /* Open connection */ member in struct:STATE
458 VSTREAM *stream = state->stream; local
476 smtp_printf(stream, "%s", line);
487 VSTREAM *stream = state->stream; local
511 smtp_get(buf, stream, var_line_limit, SMTP_GET_FLAG_SKIP);
556 VSTREAM *stream = state->stream; local
568 if ((except = vstream_setjmp(stream)) !
646 VSTREAM *stream = state->stream; local
740 VSTREAM *stream = state->stream; local
807 VSTREAM *stream; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/iotest/
H A Dstream.cpp175 log_err("Error converting string for large stream buffer testing.\n");
189 static int32_t getBitStatus(const iostream& stream) { argument
190 return (stream.good()<<IOSTREAM_GOOD_SHIFT)
191 | (stream.bad()<<IOSTREAM_BAD_SHIFT)
192 | (stream.eof()<<IOSTREAM_EOF_SHIFT)
193 | (stream.fail()<<IOSTREAM_FAIL_SHIFT);
197 printBits(const iostream& stream) argument
199 int32_t status = getBitStatus(stream);
280 /* The test cases needs to be converted to the default codepage. However, the stream operator needs char* so U_STRING_* is called. */
319 addTest(root, &TestStream, "stream/TestStrea
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Daddr2line.c76 usage (FILE *stream, int status)
78 fprintf (stream, _("Usage: %s [option(s)] [addr(s)]\n"), program_name);
79 fprintf (stream, _(" Convert addresses into line number/file name pairs.\n"));
80 fprintf (stream, _(" If no addresses are specified on the command line, they will be read from stdin\n"));
81 fprintf (stream, _(" The options are:\n\
94 list_supported_targets (program_name, stream);
96 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
75 usage(FILE *stream, int status) argument
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Davr-dis.c260 void *stream = info->stream; local
354 (*prin) (stream, "%s", ok ? opcode->name : ".word");
357 (*prin) (stream, "\t%s", op1);
360 (*prin) (stream, ", %s", op2);
363 (*prin) (stream, "\t; %s", comment1);
369 (*prin) (stream, " %s", comment2);
/macosx-10.10.1/llvmCore-3425.0.34/utils/yaml-bench/
H A DYAMLBench.cpp111 static void dumpStream(yaml::Stream &stream) { argument
112 for (yaml::document_iterator di = stream.begin(), de = stream.end(); di != de;
148 llvm::yaml::Stream stream(JSONText, SM);
149 stream.skip();
187 yaml::Stream stream(Buf->getBuffer(), sm);
188 dumpStream(stream);
/macosx-10.10.1/security_ocspd-55124/server/
H A DocspdNetwork.cpp89 CFReadStreamRef stream; member in struct:asynchttp_s
98 /* Shut down stream and timer. */
99 if (http->stream) {
100 CFReadStreamSetClient(http->stream, kCFStreamEventNone, NULL, NULL);
101 CFReadStreamUnscheduleFromRunLoop(http->stream, CFRunLoopGetCurrent(), kCFRunLoopCommonModes);
102 CFReadStreamClose(http->stream);
103 CFReleaseNull(http->stream);
120 CFReleaseNull(http->stream);
159 CFReadStreamRef stream,
171 ocspdErrorLog("http stream
158 handle_server_response( CFReadStreamRef stream, CFStreamEventType type, void *info) argument
[all...]
/macosx-10.10.1/postfix-255/postfix/src/smtp/
H A Dsmtp_proto.c303 smtp_stream_setup(state->session->stream, var_smtp_helo_tmout,
305 if ((except = vstream_setjmp(state->session->stream)) != 0)
464 vstream_longjmp(session->stream, SMTP_ERR_DATA);
613 if (getsockopt(vstream_fileno(session->stream), SOL_SOCKET,
624 if (setsockopt(vstream_fileno(session->stream), SOL_SOCKET,
658 smtp_stream_setup(state->session->stream, var_smtp_starttls_tmout,
660 if ((except = vstream_setjmp(state->session->stream)) != 0)
806 stream = session->stream,
828 (void) vstream_fpurge(session->stream, VSTREAM_PURGE_BOT
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/cpu/
H A Dm32r.opc254 (*info->fprintf_func) (info->stream, "#"); \
270 (*info->fprintf_func) (info->stream, "#");
308 (*info->fprintf_func) (info->stream, UNKNOWN_INSN_MSG);
316 (*info->fprintf_func) (info->stream, " || ");
320 (*info->fprintf_func) (info->stream, " -> ");
326 (*info->fprintf_func) (info->stream, UNKNOWN_INSN_MSG);
/macosx-10.10.1/emacs-93/emacs/lib-src/
H A Dcvtmail.c127 skip_to_lf (stream)
128 FILE *stream;
131 while ((c = getc(stream)) != EOF && c != '\n')
/macosx-10.10.1/Chess-310.6/sjeng/
H A Dprotos.h32 void display_board (FILE *stream, int color);
61 void print_move (move_s moves[], int m, FILE *stream);
78 void rinput (char str[], int n, FILE *stream);
125 void pinput (int n, FILE *stream);
/macosx-10.10.1/Libc-1044.1.2/stdio/
H A Dxprintf_all_in_one.c58 fxprintf(FILE * __restrict stream, printf_domain_t __restrict domain, argument
65 ret = __xvprintf(NULL, domain, stream, loc, format, ap);
111 vfxprintf(FILE * __restrict stream, printf_domain_t __restrict domain, argument
114 return __xvprintf(NULL, domain, stream, loc, format, ap);
H A Dxprintf_exec.c68 fxprintf_exec(FILE * __restrict stream, argument
80 ret = __xvprintf(pc, NULL, stream, NULL, NULL, ap);
145 vfxprintf_exec(FILE * __restrict stream, argument
153 return __xvprintf(pc, NULL, stream, NULL, NULL, ap);
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A Dasynchttp.h51 CFReadStreamRef stream; member in struct:asynchttp_s
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/
H A Dnpapi.mm63 NPError NPN_RequestRead(NPStream* stream, NPByteRange* rangeList)
102 NPError NPN_NewStream(NPP instance, NPMIMEType type, const char* target, NPStream** stream)
104 return [pluginViewForInstance(instance) newStream:type target:target stream:stream];
107 int32_t NPN_Write(NPP instance, NPStream* stream, int32_t len, void* buffer)
109 return [pluginViewForInstance(instance) write:stream len:len buffer:buffer];
112 NPError NPN_DestroyStream(NPP instance, NPStream* stream, NPReason reason)
114 return [pluginViewForInstance(instance) destroyStream:stream reason:reason];
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dwinsize.c35 /* sys/ptem.h has winsize but needs mblk_t from sys/stream.h */
38 # include <sys/stream.h>

Completed in 325 milliseconds

<<11121314151617181920>>