Searched defs:arg (Results 1 - 25 of 293) sorted by relevance

1234567891011>>

/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Daffinity.c53 static void PR_CALLBACK thread_start(void *arg) argument
H A Dprimblok.c69 static void PR_CALLBACK IOThread(void *arg) argument
H A Dsigpipe.c75 static void Test(void *arg) argument
H A Dexit.c62 static void Dull(void *arg) argument
H A Dinitclk.c60 void ThreadFunc(void *arg) argument
H A Dioconthr.c49 void ThreadFunc(void *arg) argument
51 PRFileDesc *fd = (PRFileDesc *) arg;
H A Dlogger.c74 static void PR_CALLBACK forked(void *arg) argument
80 PR_LogPrint("%s logging creating mutex\n", (const char*)arg);
82 PR_LogPrint("%s logging creating condition variable\n", (const char*)arg);
85 PR_LogPrint("%s waiting on condition timeout 10 times\n", (const char*)arg);
93 PR_LogPrint("%s logging destroying condition variable\n", (const char*)arg);
95 PR_LogPrint("%s logging destroying mutex\n", (const char*)arg);
97 PR_LogPrint("%s forked thread exiting\n", (const char*)arg);
H A Dpipeself.c62 static void PongThreadFunc(void *arg) argument
H A Dprpollml.c84 static void ThreadFunc(void *arg) argument
H A Dzerolen.c76 static void ClientThread(void *arg) argument
80 PRUint16 port = (PRUint16) arg;
H A Dforktest.c78 ClientThreadFunc(void *arg) argument
82 PRInt32 tmp = (PRInt32)arg;
H A Dintrio.c60 static void PR_CALLBACK AbortIO(void *arg) argument
64 rv = PR_Interrupt((PRThread*)arg);
68 static void PR_CALLBACK IOThread(void *arg) argument
/vbox/src/VBox/Devices/Network/lwip/src/netif/
H A Dloopif.c47 loopif_input( void * arg )
49 struct netif *netif = (struct netif *)( ((void **)arg)[ 0 ] );
50 struct pbuf *r = (struct pbuf *)( ((void **)arg)[ 1 ] );
52 mem_free( arg );
62 void **arg; local
77 arg = mem_malloc( sizeof( void *[2]));
78 if( NULL == arg ) {
82 arg[0] = netif;
83 arg[1] = r;
93 sys_timeout( 1, loopif_input, arg );
[all...]
H A Dethernetif.c266 arp_timer(void *arg) argument
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/
H A DipcConnectionStub.cpp67 IPC_DoCallback(ipcCallbackFunc func, void *arg) argument
/vbox/src/libs/xpcom18a4/xpcom/tests/
H A DTestAutoLock.cpp50 static void PR_CALLBACK run(void* arg) argument
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dtimers.h63 * @param arg Additional argument to pass to the function - set up by sys_timeout()
65 typedef void (* sys_timeout_handler)(void *arg);
71 void *arg; member in struct:sys_timeo
80 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name);
81 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler)
83 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
86 void sys_untimeout(sys_timeout_handler handler, void *arg);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_pcb.c99 dt_pcb_pop_ident(dt_idhash_t *dhp, dt_ident_t *idp, void *arg) argument
101 dtrace_hdl_t *dtp = arg;
/vbox/src/libs/libxml2-2.6.31/
H A DtestURI.c75 int i, arg = 1; local
77 if ((argc > arg) && (argv[arg] != NULL) &&
78 ((!strcmp(argv[arg], "-base")) || (!strcmp(argv[arg], "--base")))) {
79 arg++;
80 base = argv[arg];
82 arg++;
84 if ((argc > arg) && (argv[arg] !
[all...]
/vbox/src/recompiler/tests/
H A Dtestthread.c11 void *thread1_func(void *arg) argument
17 snprintf(buf, sizeof(buf), "thread1: %d %s\n", i, (char *)arg);
24 void *thread2_func(void *arg) argument
29 snprintf(buf, sizeof(buf), "thread2: %d %s\n", i, (char *)arg);
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dtcpip.c47 static void (* tcpip_init_done)(void *arg) = NULL;
55 tcpip_tcp_timer(void *arg) argument
57 (void)arg;
96 tcpip_thread(void *arg) argument
100 (void)arg;
214 tcpip_init(void (* initfunc)(void *), void *arg) argument
217 tcpip_init_done_arg = arg;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/chkargs/
H A Dchkargs.c42 dtrace_argdesc_t arg; local
59 bzero(&arg, sizeof (dtrace_argdesc_t));
60 arg.dtargd_id = pdp->dtpd_id;
61 arg.dtargd_ndx = i;
62 (void) ioctl(g_fd, DTRACEIOC_PROBEARG, &arg);
68 arg.dtargd_native, arg.dtargd_xlate);
123 "[-x opt[=arg]] [probedesc]\n", g_progname);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call.c61 nfs_argop4 arg[1]; local
81 args.argarray.argarray_len = sizeof (arg) / sizeof (nfs_argop4);
82 args.argarray.argarray_val = arg;
84 arg[0].argop = OP_PUTROOTFH;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/
H A Dsdt_subr.c1159 sdt_getargdesc(void *arg, dtrace_id_t id, void *parg, dtrace_argdesc_t *desc) argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/
H A Dprdump.c149 PR_SetThreadDumpProc(PRThread* thread, PRThreadDumpProc dump, void *arg) argument
152 thread->dumpArg = arg;

Completed in 95 milliseconds

1234567891011>>