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

1234567

/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/library/
H A Devents.tcl25 commandloop -async -interactive on -endcommand exit
/macosx-10.10/curl-83.1.2/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-thread.c147 destroy_async_data(&conn->async);
180 return &(((struct thread_data *)conn->async.os_specific)->tsd);
183 #define CONN_THREAD_SYNC_DATA(conn) &(((conn)->async.os_specific)->tsd);
249 /* The tsd->res structure has been copied to async.dns and perhaps the DNS
316 * destroy_async_data() cleans up async resolver data and thread handle.
318 static void destroy_async_data (struct Curl_async *async) argument
320 if(async->hostname)
321 free(async->hostname);
323 if(async->os_specific) {
324 struct thread_data *td = (struct thread_data*) 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...]
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_enableasync.c92 old = thread->flag.async;
93 thread->flag.async = on;
/macosx-10.10/tcl-105/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.10/tcl-105/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.10/ruby-106/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.10/tcl-105/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.10/Security-57031.1.35/securityd/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.10/smb-759.0/kernel/netsmb/
H A Dsmb_packets_2.h53 /* Async commands have an async ID. */
56 } async; member in union:smb2_header::__anon12614
/macosx-10.10/WebCore-7600.1.25/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.10/IOKitUser-1050.1.21/hid.subproj/
H A DIOHIDUserDevice.c78 } async; member in struct:__IOHIDUserDevice
198 if ( device->async.port ) {
199 IONotificationPortDestroy(device->async.port);
200 device->async.port = NULL;
337 if ( !device->async.port ) {
338 device->async.port = IONotificationPortCreate(kIOMasterPortDefault);
341 require_action(device->async.port, exit, result=false);
364 if ( !device->async.source ) {
365 device->async.source = IONotificationPortGetRunLoopSource(device->async
[all...]
/macosx-10.10/NFS-82/nfsd/
H A Dcommon.h28 int async; /* sysctl */ member in struct:nfs_conf_server
/macosx-10.10/tcl-105/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.10/tcl-105/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.10/vim-55/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.10/OpenLDAP-499.27/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.10/tcl-105/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...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSXMLHttpRequestCustom.cpp88 bool async = exec->uncheckedArgument(2).toBoolean(exec); local
94 impl().open(method, url, async, user, password, ec);
96 impl().open(method, url, async, user, ec);
98 impl().open(method, url, async, ec);

Completed in 286 milliseconds

1234567