/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | affinity.c | 53 static void PR_CALLBACK thread_start(void *arg) argument
|
H A D | primblok.c | 69 static void PR_CALLBACK IOThread(void *arg) argument
|
H A D | sigpipe.c | 75 static void Test(void *arg) argument
|
H A D | exit.c | 62 static void Dull(void *arg) argument
|
H A D | initclk.c | 60 void ThreadFunc(void *arg) argument
|
H A D | ioconthr.c | 49 void ThreadFunc(void *arg) argument 51 PRFileDesc *fd = (PRFileDesc *) arg;
|
H A D | logger.c | 74 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 D | pipeself.c | 62 static void PongThreadFunc(void *arg) argument
|
H A D | prpollml.c | 84 static void ThreadFunc(void *arg) argument
|
H A D | zerolen.c | 76 static void ClientThread(void *arg) argument 80 PRUint16 port = (PRUint16) arg;
|
H A D | forktest.c | 78 ClientThreadFunc(void *arg) argument 82 PRInt32 tmp = (PRInt32)arg;
|
H A D | intrio.c | 60 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 D | loopif.c | 47 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 D | ethernetif.c | 266 arp_timer(void *arg) argument
|
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/ |
H A D | ipcConnectionStub.cpp | 67 IPC_DoCallback(ipcCallbackFunc func, void *arg) argument
|
/vbox/src/libs/xpcom18a4/xpcom/tests/ |
H A D | TestAutoLock.cpp | 50 static void PR_CALLBACK run(void* arg) argument
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | timers.h | 63 * @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 D | dt_pcb.c | 99 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 D | testURI.c | 75 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 D | testthread.c | 11 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 D | tcpip.c | 47 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 D | chkargs.c | 42 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 D | tst.call.c | 61 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 D | sdt_subr.c | 1159 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 D | prdump.c | 149 PR_SetThreadDumpProc(PRThread* thread, PRThreadDumpProc dump, void *arg) argument 152 thread->dumpArg = arg;
|