Searched refs:async (Results 1 - 25 of 155) sorted by relevance

1234567

/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/library/
H A Devents.tcl25 commandloop -async -interactive on -endcommand exit
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dhostasyn.c80 conn->async.status = status;
90 conn->async.hostname,
91 conn->async.port);
106 conn->async.dns = dns;
108 /* Set async.done TRUE last in this function since it may be used multi-
110 async struct */
111 conn->async.done = TRUE;
118 /* Call this function after Curl_connect() has returned async=TRUE and
128 if(conn->async.dns) {
129 conn->dns_entry = conn->async
[all...]
H A Dasyn-ares.c174 static void destroy_async_data (struct Curl_async *async);
183 destroy_async_data(&conn->async);
187 * destroy_async_data() cleans up async resolver data.
189 static void destroy_async_data (struct Curl_async *async) argument
191 if(async->hostname)
192 free(async->hostname);
194 if(async->os_specific) {
195 struct ResolverResults *res = (struct ResolverResults *)async->os_specific;
203 async->os_specific = NULL;
206 async
[all...]
H A Dasyn-thread.c146 destroy_async_data(&conn->async);
179 return &(((struct thread_data *)conn->async.os_specific)->tsd);
182 #define CONN_THREAD_SYNC_DATA(conn) &(((conn)->async.os_specific)->tsd);
248 /* The tsd->res structure has been copied to async.dns and perhaps the DNS
315 * destroy_async_data() cleans up async resolver data and thread handle.
317 static void destroy_async_data (struct Curl_async *async) argument
319 if(async->hostname)
320 free(async->hostname);
322 if(async->os_specific) {
323 struct thread_data *td = (struct thread_data*) async
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/libdcethread/
H A Ddcethread_enableasync.c92 old = thread->flag.async;
93 thread->flag.async = on;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/cache/
H A DpkgIndex.tcl2 package ifneeded cache::async 0.3 [list source [file join $dir async.tcl]]
H A Dasync.tcl22 snit::type cache::async {
35 option -full-async-results -default 1 -type snit::boolean
73 # Note: This method cannot interfere with async queries caused
77 # it can trigger async queries of the provider. If the data is
137 if {$found && !$options(-full-async-results)} {
155 if {$found && !$options(-full-async-results)} {
185 package provide cache::async 0.3
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/interp/
H A Ddeleg_method.tcl25 # syntax: ?-async? name arguments comm id
27 set async 0
30 -async {set async 1 ; set args [lrange $args 1 end]}
32 return -code error "unknown option \"$opt\", expected -async"
55 if {$async} {append body "-async "}
H A Ddeleg_proc.tcl24 # syntax: ?-async? name arguments comm id
26 set async 0
29 -async {
30 set async 1
34 return -code error "unknown option \"$opt\", expected -async"
58 if {$async} {append body "-async "}
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/
H A Dremote-tk.rb161 @interp._invoke('send', '-async', @remote,
162 'send', '-async', Tk.appname,
198 def _appsend(enc_mode, async, *cmds)
201 p ['_appsend', [@remote, @displayof], enc_mode, async, cmds] if $DEBUG
210 if async
211 @interp.__invoke('send', '-async', '-displayof', @displayof,
218 if async
219 @interp.__invoke('send', '-async', '--', @remote, *cmds)
240 def appsend(async, *args)
243 if async !
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclAsync.c88 * async subsystem.
178 Tcl_AsyncMark(async)
179 Tcl_AsyncHandler async; /* Token for handler. */
181 AsyncHandler *token = (AsyncHandler *) async;
284 * of async handlers will result in panic; exception: the list
294 Tcl_AsyncDelete(async)
295 Tcl_AsyncHandler async; /* Token for handler to delete. */
298 AsyncHandler *asyncPtr = (AsyncHandler *) async;
306 panic("Tcl_AsyncDelete: async handler deleted by the wrong thread");
324 panic("Tcl_AsyncDelete: cannot find async handle
[all...]
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/t/
H A D04refloop.t16 my $ldap = Net::LDAP::Dummy->new("host", async => 1);
27 my $ldap = Net::LDAP::Dummy->new("host", async => 1);
/macosx-10.9.5/securityd-55199.3/src/
H A Dtokend.cpp139 void TokenDaemon::fault(bool async, const char *reason) argument
143 this, async ? "ASYNCHRONOUS" : "SYNCHRONOUS", reason);
148 mFaultRelay->relayFault(async);
150 if (!async)
H A Dtokend.h45 virtual void relayFault(bool async) = 0;
75 void fault(bool async, const char *reason);
H A Dtoken.h66 void fault(bool async);
85 void relayFault(bool async);
/macosx-10.9.5/smb-697.95.1/kernel/netsmb/
H A Dsmb_packets_2.h53 /* Async commands have an async ID. */
56 } async; member in union:smb2_header::__anon12589
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLScriptElement.idl25 attribute boolean async;
H A DHTMLScriptElement.cpp97 void HTMLScriptElement::setAsync(bool async) argument
99 setBooleanAttribute(asyncAttr, async);
103 bool HTMLScriptElement::async() const function in class:WebCore::HTMLScriptElement
/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDUserDevice.c74 } async; member in struct:__IOHIDUserDevice
191 if ( device->async.port ) {
192 IONotificationPortDestroy(device->async.port);
193 device->async.port = NULL;
303 if ( !device->async.port ) {
305 device->async.port = IONotificationPortCreate(kIOMasterPortDefault);
306 if ( !device->async.port )
327 if ( !device->async.source ) {
328 device->async.source = IONotificationPortGetRunLoopSource(device->async
[all...]
/macosx-10.9.5/NFS-81/nfsd/
H A Dcommon.h28 int async; /* sysctl */ member in struct:nfs_conf_server
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclAsync.c74 * Finalizes the mutex in the thread local data structure for the async
166 Tcl_AsyncHandler async) /* Token for handler. */
168 AsyncHandler *token = (AsyncHandler *) async;
268 * of async handlers will result in panic; exception: the list
279 Tcl_AsyncHandler async) /* Token for handler to delete. */
282 AsyncHandler *asyncPtr = (AsyncHandler *) async;
290 Tcl_Panic("Tcl_AsyncDelete: async handler deleted by the wrong thread");
308 Tcl_Panic("Tcl_AsyncDelete: cannot find async handler");
162 Tcl_AsyncMark( Tcl_AsyncHandler async) argument
273 Tcl_AsyncDelete( Tcl_AsyncHandler async) argument
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/bench/
H A Dlibbench.tcl451 thread::send -async $them { load {} Thread }
452 thread::send -async $them \
454 thread::send -async $them \
456 thread::send -async $them \
458 thread::send -async $them \
465 thread::send -async $them [list source $file]
466 thread::send -async $them \
468 #thread::send -async $them { thread::unwind }
498 thread::send -async $id { thread::unwind }
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmib.vim38 syn keyword mibEpilogue test-function get-function-async set-function-async
39 syn keyword mibEpilogue test-function-async next-function next-function-async
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dos-local.c169 ldap_pvt_connect(LDAP *ld, ber_socket_t s, struct sockaddr_un *sa, int async) argument
179 oslocal_debug(ld, "ldap_connect_timeout: fd: %d tm: %ld async: %d\n",
180 s, opt_tv ? tv.tv_sec : -1L, async);
252 if ( async ) return -2;
322 ldap_connect_to_path(LDAP *ld, Sockbuf *sb, LDAPURLDesc *srv, int async) argument
351 rc = ldap_pvt_connect(ld, s, &server, async);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/comm/
H A Dcomm.tcl20 # comm send ?-async? <id> <cmd> ?<arg> ...?
192 ## API: Setup async result generation for a remotely invoked command.
195 # (current,async) -> bool (default 0)
201 if {![info exists comm(current,async)]} {
204 if {$comm(current,async)} {
217 async return for a command on a different channel"
230 # Mark the current command as using async result return. We do
234 set comm(current,async) 1
443 # args = ?-async | -command command? id cmd ?arg arg ...?
446 if {[string equal -async
[all...]

Completed in 278 milliseconds

1234567