Searched refs:opaque (Results 1 - 25 of 206) sorted by relevance

123456789

/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dpthread_internal.h37 char opaque[48]; member in struct:ksyn_waitq_element
39 char opaque[32];
/macosx-10.9.5/CPANInternal-140/URI/URI/
H A Durn.pm50 my $opaque = $self->opaque;
52 my $v = $opaque;
55 $self->opaque($v);
58 $opaque =~ s/:.*//s;
59 return $opaque;
71 my $opaque = $self->opaque;
73 my $v = $opaque;
81 $self->opaque(
[all...]
H A Dmailto.pm45 my $opaque = "to=" . $self->opaque;
46 $opaque =~ s/\?/&/;
63 $self->opaque($new);
69 URI->new("mailto:?$opaque")->query_form;
H A Ddata.pm14 my $opaque = $self->opaque;
15 $opaque =~ /^([^,]*),?/ or die;
25 $opaque =~ s/^[^,]*,?/$new$base64,/;
26 $self->opaque($opaque);
35 my($enc, $data) = split(",", $self->opaque, 2);
55 $self->opaque("$enc,$new");
/macosx-10.9.5/zlib-53/zlib/contrib/minizip/
H A Dioapi.c22 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
25 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
32 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
39 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
46 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
49 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
68 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
75 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
76 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidp
83 fopen_file_func(voidpf opaque, const char* filename, int mode) argument
101 fopen64_file_func(voidpf opaque, const void* filename, int mode) argument
120 fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) argument
127 fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) argument
134 ftell_file_func(voidpf opaque, voidpf stream) argument
142 ftell64_file_func(voidpf opaque, voidpf stream) argument
149 fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) argument
172 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
198 fclose_file_func(voidpf opaque, voidpf stream) argument
205 ferror_file_func(voidpf opaque, voidpf stream) argument
[all...]
H A Dioapi.h127 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
128 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
129 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
130 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
131 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
133 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
134 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
147 voidpf opaque; member in struct:zlib_filefunc_def_s
150 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
151 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidp
163 voidpf opaque; member in struct:zlib_filefunc64_def_s
[all...]
H A Diowin32.c28 voidpf ZCALLBACK win32_open_file_func OF((voidpf opaque, const char* filename, int mode));
29 uLong ZCALLBACK win32_read_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
30 uLong ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
31 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream));
32 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
33 int ZCALLBACK win32_close_file_func OF((voidpf opaque, voidpf stream));
34 int ZCALLBACK win32_error_file_func OF((voidpf opaque, voidpf stream));
88 voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int mode) argument
103 voidpf ZCALLBACK win32_open64_file_funcA (voidpf opaque,const void* filename,int mode) argument
118 voidpf ZCALLBACK win32_open64_file_funcW (voidpf opaque,cons argument
133 win32_open_file_func(voidpf opaque,const char* filename,int mode) argument
148 win32_read_file_func(voidpf opaque, voidpf stream, void* buf,uLong size) argument
170 win32_write_file_func(voidpf opaque,voidpf stream,const void* buf,uLong size) argument
191 win32_tell_file_func(voidpf opaque,voidpf stream) argument
212 win32_tell64_file_func(voidpf opaque, voidpf stream) argument
237 win32_seek_file_func(voidpf opaque,voidpf stream,uLong offset,int origin) argument
274 win32_seek64_file_func(voidpf opaque, voidpf stream,ZPOS64_T offset,int origin) argument
313 win32_close_file_func(voidpf opaque, voidpf stream) argument
331 win32_error_file_func(voidpf opaque,voidpf stream) argument
[all...]
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Dzutil.c216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
218 voidpf buf = opaque; /* just to make some compilers happy */
240 void zcfree (voidpf opaque, voidpf ptr) argument
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void zcfree (voidpf opaque, voidpf ptr) argument
283 if (opaque) opaque
[all...]
/macosx-10.9.5/sudo-72/src/zlib/
H A Dzutil.c197 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) argument
199 voidpf buf = opaque; /* just to make some compilers happy */
221 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) argument
239 ptr = opaque; /* just to make some compilers happy */
256 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) argument
258 if (opaque) opaque = 0; /* to make compiler happy */
262 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) argument
264 if (opaque) opaque
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/zlib/
H A Dzutil.c244 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
246 voidpf buf = opaque; /* just to make some compilers happy */
268 void zcfree (voidpf opaque, voidpf ptr) argument
286 ptr = opaque; /* just to make some compilers happy */
303 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
305 if (opaque) opaque = 0; /* to make compiler happy */
309 void zcfree (voidpf opaque, voidpf ptr) argument
311 if (opaque) opaque
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dsalt-aes.c43 krb5_data opaque,
51 if (opaque.length == 0)
53 else if (opaque.length == 4) {
55 _krb5_get_int(opaque.data, &v, 4);
39 AES_string_to_key(krb5_context context, krb5_enctype enctype, krb5_data password, krb5_salt salt, krb5_data opaque, krb5_keyblock *key) argument
/macosx-10.9.5/IOGraphics-471.92.1/IONDRVSupport/
H A DIONDRV.h44 (regEntryID)->opaque[0] = (void *) (((uintptr_t)obj) - ((uintptr_t)gIOFramebufferKey)); \
45 (regEntryID)->opaque[1] = (void *) ~(((uintptr_t)obj) - ((uintptr_t)gIOFramebufferKey)); \
46 (regEntryID)->opaque[2] = (void *) 0x53696d65; \
47 (regEntryID)->opaque[3] = (void *) 0x52756c7a;
/macosx-10.9.5/zlib-53/zlib/
H A Dzutil.c216 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) argument
218 voidpf buf = opaque; /* just to make some compilers happy */
240 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) argument
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) argument
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) argument
283 if (opaque) opaque
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/rpc_server/
H A Ddb_server.x192 opaque gid<>;
248 opaque keydata<>;
264 opaque keydata<>;
269 opaque datadata<>;
276 opaque keydata<>;
277 opaque datadata<>;
440 opaque keydata<>;
477 opaque skeydata<>;
482 opaque pkeydata<>;
487 opaque datadat
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dlocks.h60 unsigned long opaque[10]; member in struct:__anon15263
158 unsigned long opaque[2]; member in struct:__anon15271
162 unsigned long opaque[10]; member in struct:__anon15272
167 unsigned long opaque[2]; member in struct:__anon15273
171 unsigned long opaque[10]; member in struct:__anon15274
220 uint32_t opaque[3]; member in struct:__anon15275
/macosx-10.9.5/Librpcsvc-23/
H A Dspray.x72 typedef opaque sprayarr<SPRAYMAX>;
H A Dsm_inter.x89 opaque priv[16]; /* private information to store at monitor for requesting process */
124 opaque priv[16]; /* stored private information */
H A Dmount.x56 typedef opaque fhandle[FHSIZE];
58 typedef opaque fhandle3<FHSIZE3>;
/macosx-10.9.5/NFS-81/mount_nfs/
H A Dnfs_sys_prot.x38 typedef opaque utf8string<>;
43 typedef opaque attrlist<>;
81 opaque nfssi_info<>;
86 opaque nfss_server_info<>; /* optional, contents described by nfs_fs_server_info */
99 opaque nfsl_locations_info<>; /* optional, contents described by nfs_fs_locations_info */
154 typedef opaque nfs_mattr_fh<NFS4_FHSIZE>;
/macosx-10.9.5/Heimdal-323.92.1/tests/kdc/
H A Dcheck-digest.in176 opaque=`grep opaque= sdigest-reply | cut -f2- -d=`
182 --opaque="$opaque" \
191 #echo opaqeue: $opaque
198 --opaque="$opaque" \
219 --opaque="$opaque" \
242 opaque
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/uri/
H A Dmailto.rb95 tmp[:opaque] = tmp[:to]
97 tmp[:opaque] = ''
101 tmp[:opaque] << '?'
104 tmp[:opaque] << tmp[:headers].collect { |x|
113 tmp[:opaque] << tmp[:headers].collect { |h,v|
118 tmp[:opaque] << tmp[:headers].to_s
140 if MAILTO_REGEXP =~ @opaque
151 "unrecognised opaque part for mailtoURL: #{@opaque}"
170 "bad component(expected opaque componen
[all...]
/macosx-10.9.5/hfs-226.1.1/newfs_hfs/
H A Dnewfs_hfs.h42 /* Finder types (mostly opaque in our usage) */
47 UInt8 opaque[6]; /* If set to {0, 0}, the Finder will place the item automatically */ member in struct:FInfo
52 UInt8 opaque[16]; member in struct:FXInfo
57 UInt8 opaque[16]; member in struct:DInfo
62 UInt8 opaque[16]; member in struct:DXInfo
/macosx-10.9.5/Libc-997.90.3/include/sys/
H A Drbtree.h87 typedef struct rb_node { void * opaque[3]; } rb_node_t; member in struct:rb_node
88 typedef struct rb_tree { void *opaque[8]; } rb_tree_t; member in struct:rb_tree
/macosx-10.9.5/CPANInternal-140/URI/t/
H A Dgeneric.t7 $foo = URI->new("Foo:opaque#frag");
12 print "not " unless $foo->as_string eq "Foo:opaque#frag";
15 print "not " unless "$foo" eq "Foo:opaque#frag";
22 print "not " unless $foo->opaque eq "opaque";
28 print "not " unless $foo->canonical eq "foo:opaque#frag";
34 print "not " unless $old eq "foo" && $foo eq "bar:opaque#frag";
38 print "not " unless $old eq "bar" && $foo eq "opaque#frag";
44 print "not " unless $old eq "foo" && $foo eq "opaque#frag";
50 $old = $foo->opaque("xx
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/webrick/httpauth/
H A Ddigestauth.rb51 # Struct containing the opaque portion of the digest authentication
137 opaque = generate_opaque(req)
138 @opaques[opaque].nonce = nonce
145 param["opaque"] = HTTPUtils::quote(opaque) if opaque
213 info("@opaque = %s", @opaque.inspect) if $DEBUG
214 if !(opaque = auth_req['opaque'])
[all...]

Completed in 345 milliseconds

123456789