Searched refs:async (Results 51 - 75 of 156) sorted by relevance

1234567

/macosx-10.10/tcl-105/tcl_ext/tclxml/tcldom/library/
H A Dxmlswitch.tcl60 # If -async option is true returns a token for this "process".
70 set state(-async) 0
140 if {$state(-async)} {
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXSend.c340 const char *sendOptions[] = {"-async", "-displayof", "-", NULL}; local
342 int async = 0;
356 async = 1;
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dnojobs.c318 add_pid (pid, async)
320 int async;
329 if (async)
339 /* first, count the number of non-running async jobs if FORCE == 0 */
357 /* If FORCE == 0, we just mark as many non-running async jobs as notified
880 stop_pipeline (async, ignore)
881 int async;
/macosx-10.10/tcl-105/tcl84/tcl/library/http/
H A Dhttp.tcl453 set async -async
455 set async ""
463 set conStat [catch {eval $defcmd $async {$phost $pport}} s]
465 set conStat [catch {eval $defcmd $async {$host $port}} s]
530 # The query channel must be blocking for the async Write to
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLHttpRequest.cpp464 void XMLHttpRequest::open(const String& method, const URL& url, bool async, ExceptionCode& ec) argument
501 if (!async && scriptExecutionContext()->isDocument()) {
532 m_async = async;
544 void XMLHttpRequest::open(const String& method, const URL& url, bool async, const String& user, ExceptionCode& ec) argument
549 open(method, urlWithCredentials, async, ec);
552 void XMLHttpRequest::open(const String& method, const URL& url, bool async, const String& user, const String& password, ExceptionCode& ec) argument
558 open(method, urlWithCredentials, async, ec);
728 // Also, only async requests support upload progress events.
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXcmdloop.c23 * with a given instance of a async command loop. I allows for recursive
175 * tcl_prompt2 or a specified prompt string. Also involkes any pending async
311 * Handler for async command reading. This procedure is invoked by the event
404 * Delete an async command handler.
451 * Establish an async command handler on stdin.
692 * commandloop -async -interactive on|off|tty -prompt1 cmd
705 int options = 0, async = FALSE, argIdx, interactive;
714 if (STREQU (argStr, "-async")) {
715 async = TRUE;
750 if (async) {
695 int options = 0, async = FALSE, argIdx, interactive; local
[all...]
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorResourceAgent.h99 void willLoadXHR(ThreadableLoaderClient*, const String& method, const URL&, bool async, PassRefPtr<FormData> body, const HTTPHeaderMap& headers, bool includeCrendentials);
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tk/
H A Dwinpkg.rb63 tk_call('dde', '-async', 'execute', service, topic, data)
87 tk_call('dde', 'eval', -async, topic, cmd, *args)
/macosx-10.10/tcl-105/tcl_ext/tls/tls/
H A Dtls.tcl79 set options "-async, -cadir, -cafile, -certfile, -cipher, -command, -keyfile, -myaddr, -myport, -password, -request, -require, -ssl2, -ssl3, or -tls1"
88 0,-async {lappend sopts $arg}
/macosx-10.10/tcl-105/tcl/tcl/win/
H A DtclWinDde.c1175 "-async", NULL
1182 int async = 0, binary = 0, exact = 0;
1259 async = 1;
1266 "?-async? serviceName topicName value");
1307 Tcl_WrongNumArgs(interp, 2, objv, "?-async? serviceName args");
1318 async = 1;
1384 if (async) {
1504 objc -= (async + 3);
1505 objv += (async + 3);
1620 if (async) {
1167 int async = 0, binary = 0, exact = 0; local
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dos-ip.c422 int async)
444 osip_debug(ld, "ldap_pvt_connect: fd: %d tm: %ld async: %d\n",
445 s, opt_tv ? tv.tv_sec : -1L, async);
461 if ( async ) {
543 int async )
660 sai->ai_addr, sai->ai_addrlen, async );
734 async);
1415 * cause the async thread to exit anyway.
420 ldap_pvt_connect(LDAP *ld, ber_socket_t s, struct sockaddr *sin, ber_socklen_t addrlen, int async) argument
H A Dldap-int.h535 void *ld_res_cb_info; /* async results callback info */
666 LDAPConn *conn, LDAPURLDesc *srvlist, int async );
680 int proto, LDAPURLDesc *srv, int async );
707 LDAPURLDesc *srv, int async );
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixSend.c915 int result, c, async, i, firstArg;
933 async = 0;
944 if ((c == 'a') && (strncmp(argv[i], "-async", length) == 0)) {
945 async = 1;
960 "\": must be -async, -displayof, or --", (char *) NULL);
1057 if (!async) {
1075 (async) ? (PendingCommand *) NULL : &pending);
1077 if (async) {
906 int result, c, async, i, firstArg; local
/macosx-10.10/emacs-93/emacs/lisp/
H A Dvc-cvs.el539 (if (and (vc-stay-local-p file) (fboundp 'start-process)) 'async 0)
556 (let* ((async (and (not vc-disable-async-diff)
560 (if async 'async 1)
565 (if async 1 status)))) ; async diff, pessimistic assumption
/macosx-10.10/ruby-106/ruby/ext/tk/lib/
H A Dtk.rb1318 # If not, raise Tcl_Panic on Tcl_AsyncDelete because async handler
1775 def appsend(interp, async, *args)
1781 if async != true && async != false && async != nil
1782 args.unshift(async)
1783 async = false
1785 if async
1786 tk_call('send', '-async', '--', interp, *args)
1792 def rb_appsend(interp, async, *arg
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/ipc/
H A Dclient.c269 c->queue = dispatch_queue_create("heim-ipc-async-client", NULL);
520 int (*async)(void *, const heim_idata *, void *, member in struct:hipc_ops
598 if (ctx->ops->async == NULL) {
609 return (ctx->ops->async)(ctx->ctx, snd, userctx, func);
/macosx-10.10/IONetworkingFamily-101/
H A DIOOutputQueue.cpp76 // Allocate and initialize the callout entry for async service.
599 bool async = (options & kServiceAsync); local
627 if (async == false) dequeue();
632 if ( doDequeue && async )
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixSend.c957 int result, c, async, i, firstArg;
974 async = 0;
985 if ((c == 'a') && (strncmp(argv[i], "-async", length) == 0)) {
986 async = 1;
1001 "\": must be -async, -displayof, or --", NULL);
1096 if (!async) {
1113 Tcl_DStringLength(&request) + 1, (async ? NULL : &pending));
1115 if (async) {
948 int result, c, async, i, firstArg; local
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DBlobResourceHandle.cpp158 BlobResourceHandle::BlobResourceHandle(BlobData* blobData, const ResourceRequest& request, ResourceHandleClient* client, bool async) argument
161 , m_async(async)
218 // Finish this async call quickly and return.
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread-private.c108 if (thread->flag.async)
248 thread->flag.async = 0;
/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclUnixChan.c239 CONST char *myaddr, int myport, int async));
2526 CreateSocket(interp, port, host, server, myaddr, myport, async)
2535 int async; /* If nonzero and creating a client socket,
2536 * attempt to do an async connect. Otherwise
2607 if (async) {
2635 if (async) {
2786 Tcl_OpenTcpClient(interp, port, host, myaddr, myport, async)
2792 int async; /* If nonzero, attempt to do an
2803 statePtr = CreateSocket(interp, port, host, 0, myaddr, myport, async);
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1/
H A DtclStubs.c.orig754 Tcl_AsyncDelete(async)
755 Tcl_AsyncHandler async;
757 (tclStubsPtr->tcl_AsyncDelete)(async);
771 Tcl_AsyncMark(async)
772 Tcl_AsyncHandler async;
774 (tclStubsPtr->tcl_AsyncMark)(async);
1917 Tcl_OpenTcpClient(interp, port, address, myaddr, myport, async)
1923 int async;
1925 return (tclStubsPtr->tcl_OpenTcpClient)(interp, port, address, myaddr, myport, async);
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1b2/
H A DtclStubs.c.orig754 Tcl_AsyncDelete(async)
755 Tcl_AsyncHandler async;
757 (tclStubsPtr->tcl_AsyncDelete)(async);
771 Tcl_AsyncMark(async)
772 Tcl_AsyncHandler async;
774 (tclStubsPtr->tcl_AsyncMark)(async);
1917 Tcl_OpenTcpClient(interp, port, address, myaddr, myport, async)
1923 int async;
1925 return (tclStubsPtr->tcl_OpenTcpClient)(interp, port, address, myaddr, myport, async);
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1b3/
H A DtclStubs.c.orig754 Tcl_AsyncDelete(async)
755 Tcl_AsyncHandler async;
757 (tclStubsPtr->tcl_AsyncDelete)(async);
771 Tcl_AsyncMark(async)
772 Tcl_AsyncHandler async;
774 (tclStubsPtr->tcl_AsyncMark)(async);
1917 Tcl_OpenTcpClient(interp, port, address, myaddr, myport, async)
1923 int async;
1925 return (tclStubsPtr->tcl_OpenTcpClient)(interp, port, address, myaddr, myport, async);
/macosx-10.10/NFS-82/nfsd/
H A Dmain.c111 0, /* async */
569 if (!strcmp(key, "nfs.server.async")) {
570 conf->async = val;
759 if (!old || (old->async != new->async))
760 sysctl_set("vfs.generic.nfs.server.async", new->async);

Completed in 381 milliseconds

1234567