| /src/tests/lib/libpthread/weak/lib/ | 
| h_pthread_weak.c | 52 	RZ(pthread_mutex_init(&mtx, NULL)); 53 	RZ(pthread_mutex_lock(&mtx));
 54 	RZ(pthread_mutex_unlock(&mtx));
 55 	RZ(pthread_mutex_destroy(&mtx));
 66 	RZ(pthread_attr_init(&attr));
 67 	RZ(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE));
 68 	RZ(pthread_create(&t, NULL, &start, &cookie));
 69 	RZ(pthread_attr_destroy(&attr));
 70 	RZ(pthread_join(t, &result));
 
 | 
| /src/tests/lib/libc/gen/posix_spawn/ | 
| t_fileactions.c | 87 	RZ(posix_spawn_file_actions_init(&fa)); 88 	RZ(posix_spawn_file_actions_addopen(&fa, fileno(stdin),
 90 	RZ(posix_spawn_file_actions_addopen(&fa, fileno(stdout),
 92 	RZ(posix_spawn(&pid, "/bin/cat", &fa, NULL, args, NULL));
 93 	RZ(posix_spawn_file_actions_destroy(&fa));
 115 	RZ(posix_spawn_file_actions_init(&fa));
 116 	RZ(posix_spawn_file_actions_addopen(&fa, fileno(stdin),
 118 	RZ(posix_spawn_file_actions_addopen(&fa, fileno(stdout),
 120 	RZ(posix_spawn(&pid, "/bin/cat", &fa, NULL, args, NULL));
 121 	RZ(posix_spawn_file_actions_destroy(&fa))
 [all...]
 | 
| t_spawnattr.c | 122 	RZ(posix_spawnattr_init(&attr)); 132 	RZ(posix_spawnattr_setflags(&attr, POSIX_SPAWN_SETSCHEDULER |
 136 	RZ(posix_spawnattr_setpgroup(&attr, 0));
 137 	RZ(posix_spawnattr_setschedparam(&attr, &sp));
 138 	RZ(posix_spawnattr_setschedpolicy(&attr, scheduler));
 139 	RZ(posix_spawnattr_setsigmask(&attr, &sig));
 140 	RZ(posix_spawnattr_setsigdefault(&attr, &sig));
 144 	RZ(posix_spawn(&pid, helper, NULL, &attr, args, NULL));
 169 	RZ(posix_spawnattr_destroy(&attr));
 190 	RZ(posix_spawnattr_init(&attr))
 [all...]
 | 
| t_spawn.c | 68 	RZ(posix_spawn(NULL, "/bin/ls", NULL, NULL, args, NULL)); 81 	RZ(posix_spawnp(NULL, "ls", NULL, NULL, args, NULL));
 152 		RZ(posix_spawn(&pid, buf, NULL, NULL, args0, NULL));
 217 	RZ(posix_spawn_file_actions_init(&fa));
 221 		RZ(posix_spawn_file_actions_addchdir(&fa, dirpath));
 226 		RZ(posix_spawn_file_actions_addfchdir(&fa, fd));
 235 		RZ(posix_spawn_file_actions_addopen(&fa, STDOUT_FILENO,
 239 		RZ(posix_spawnattr_init(&attr));
 248 		RZ(posix_spawnattr_setflags(&attr, POSIX_SPAWN_RETURNERROR));
 258 		RZ(posix_spawnattr_destroy(&attr))
 [all...]
 | 
| /src/tests/lib/libpthread/ | 
| cancelpoint.h | 85 	RZ(pthread_barrier_init(&bar, NULL, 2)); 86 	RZ(pthread_create(&t, NULL, &thread_cancelpoint, cancelpoint));
 90 	RZ(pthread_cancel(t));
 94 	RZ(pthread_join(t, &result));
 106 	RZ(pthread_barrier_init(&bar, NULL, 2));
 107 	RZ(pthread_create(&t, NULL, &cancelpoint_thread, cancelpoint));
 114 	RZ(pthread_cancel(t));
 
 | 
| t_stack.c | 80 	RZ(pthread_getattr_np(pthread_self(), &attr)); 81 	RZ(pthread_attr_getstacksize(&attr, &stacksize));
 82 	RZ(pthread_attr_destroy(&attr));
 173 	RZ(pthread_key_create(&C->jmp_key, NULL));
 288 	RZ(pthread_getattr_np(t, &attr));
 289 	RZ(pthread_attr_getstack(&attr, &addr, &size));
 290 	RZ(pthread_attr_getguardsize(&attr, &guardsize));
 365 	RZ(pthread_getattr_np(t, &attr));
 366 	RZ(pthread_attr_getstack(&attr, &addr, &size));
 367 	RZ(pthread_attr_getstacksize(&attr, &size0))
 [all...]
 | 
| t_cancellation.c | 103 	RZ(pthread_join(*tp, &result)); 541 	RZ(pthread_cond_init(&cond, NULL));
 542 	RZ(pthread_mutex_init(&mutex, NULL));
 544 	RZ(pthread_mutex_lock(&mutex));
 545 	RZ(pthread_cond_clockwait(&cond, &mutex, CLOCK_MONOTONIC, &t));
 546 	RZ(pthread_mutex_unlock(&mutex));
 561 	RZ(pthread_cond_init(&cond, NULL));
 562 	RZ(pthread_mutex_init(&mutex, NULL));
 564 	RZ(pthread_mutex_lock(&mutex));
 565 	RZ(pthread_cond_timedwait(&cond, &mutex, &t))
 [all...]
 | 
| /src/tests/rump/rumpvfs/ | 
| t_p2kifs.c | 71 	RZ(rump_pub_lwproc_rfork(RUMP_RFCFDG)); 74 	RZ(RUMP_VOP_LOCK(rumpns_rootvnode, RUMP_LK_EXCLUSIVE));
 79 	RZ(RUMP_VOP_LOOKUP(rumpns_rootvnode, &vp, cn));
 86 	RZ(RUMP_VOP_LOOKUP(rumpns_rootvnode, &vp, cn));
 88 	RZ(RUMP_VOP_UNLOCK(rumpns_rootvnode));
 
 | 
| t_basic.c | 62 	RZ(rump_init()); 
 | 
| /src/tests/rump/rumpkern/ | 
| t_lwproc.c | 63 	RZ(rump_pub_lwproc_newlwp(0)); 67 	RZ(rump_pub_lwproc_rfork(RUMP_RFCFDG));
 71 	RZ(rump_pub_lwproc_newlwp(rump_sys_getpid()));
 90 	RZ(rump_pub_lwproc_rfork(RUMP_RFCFDG));
 92 	RZ(rump_pub_lwproc_newlwp(rump_sys_getpid()));
 94 	RZ(rump_pub_lwproc_rfork(RUMP_RFCFDG));
 125 	RZ(rump_pub_lwproc_rfork(RUMP_RFCFDG));
 129 	RZ(rump_pub_lwproc_rfork(RUMP_RFCFDG));
 155 	RZ(rump_pub_lwproc_rfork(RUMP_RFCFDG));
 163 		RZ(rump_pub_lwproc_newlwp(mypid))
 [all...]
 | 
| /src/tests/kernel/ | 
| t_unmount.c | 65 	RZ(rump_init()); 79 	RZ(rump_pub_lwproc_rfork(RUMP_RFCFDG));
 82 	RZ(rump_pub_namei(RUMP_NAMEI_LOOKUP, 0, MP, NULL, &vp, NULL));
 
 | 
| t_signal_and_sp.c | 501 	RZ(pthread_create(&t, NULL, &threadspfunc, NULL)); 504 	RZ(pthread_join(t, &sp));
 514 		RZ(pthread_attr_init(&attr));
 515 		RZ(pthread_attr_setstack(&attr, stack, SIGSTKSZ + i));
 516 		RZ(pthread_create(&t, &attr, &threadspfunc, NULL));
 517 		RZ(pthread_attr_destroy(&attr));
 520 		RZ(pthread_join(t, &sp));
 534 		RZ(pthread_attr_init(&attr));
 535 		RZ(pthread_attr_setstack(&attr, stack + i, SIGSTKSZ));
 536 		RZ(pthread_create(&t, &attr, &threadspfunc, NULL))
 [all...]
 | 
| /src/tests/net/bpf/ | 
| t_bpf.c | 83 	RZ(rump_init()); 84 	RZ(rump_pub_shmif_create(NULL, &ifnum));
 156 	RZ(rump_init());
 184 	RZ(rump_init());
 185 	RZ(rump_pub_shmif_create(NULL, &ifnum));
 215 	RZ(rump_init());
 216 	RZ(rump_pub_shmif_create(NULL, &ifnum));
 242 	RZ(rump_init());
 246 	RZ(rump_pub_shmif_create(NULL, &ifnum));
 251 	RZ(rump_pub_shmif_create(NULL, &ifnum))
 [all...]
 | 
| t_mbuf.c | 523 	RZ(rump_init()); 544 	RZ(rump_init());
 565 	RZ(rump_init());
 586 	RZ(rump_init());
 607 	RZ(rump_init());
 628 	RZ(rump_init());
 649 	RZ(rump_init());
 670 	RZ(rump_init());
 691 	RZ(rump_init());
 712 	RZ(rump_init())
 [all...]
 | 
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ | 
| r8a7742-iwg21d-q7-dbcm-ov7725-single.dtsi | 4  * the iWave-RZ/G1H Qseven board development platform connected with the 
 | 
| r8a7742-iwg21d-q7-dbcm-ov5640-single.dtsi | 4  * the iWave-RZ/G1H Qseven board development platform connected with the 
 | 
| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/renesas/ | 
| r8a774c0-ek874-mipi-2.1.dts | 3  * Device Tree Source for the Silicon Linux RZ/G2E 96board platform (CAT874) 16 	model = "Silicon Linux RZ/G2E evaluation kit EK874 (CAT874 + CAT875) with aistarvision-mipi-v2-adapter board";
 
 | 
| rzg2-advantech-idk-1110wr-panel.dtsi | 4  * to RZ/G2 boards 
 | 
| hihope-rzg2-ex-lvds.dtsi | 3  * Device Tree Source for the RZ/G2[MN] HiHope sub board LVDS common parts 
 | 
| /src/tests/net/bpfjit/ | 
| t_cop.c | 130 	RZ(rump_init()); 165 	RZ(rump_init());
 204 	RZ(rump_init());
 243 	RZ(rump_init());
 282 	RZ(rump_init());
 326 	RZ(rump_init());
 372 	RZ(rump_init());
 404 	RZ(rump_init());
 430 	RZ(rump_init());
 466 	RZ(rump_init())
 [all...]
 | 
| t_bpfjit.c | 84 	RZ(rump_init()); 112 	RZ(rump_init());
 143 	RZ(rump_init());
 170 	RZ(rump_init());
 195 	RZ(rump_init());
 220 	RZ(rump_init());
 244 	RZ(rump_init());
 269 	RZ(rump_init());
 294 	RZ(rump_init());
 319 	RZ(rump_init())
 [all...]
 | 
| t_extmem.c | 103 	RZ(rump_init()); 134 	RZ(rump_init());
 179 	RZ(rump_init());
 237 	RZ(rump_init());
 273 	RZ(rump_init());
 318 	RZ(rump_init());
 369 	RZ(rump_init());
 421 	RZ(rump_init());
 473 	RZ(rump_init());
 
 | 
| t_mbuf.c | 544 	RZ(rump_init()); 565 	RZ(rump_init());
 586 	RZ(rump_init());
 607 	RZ(rump_init());
 628 	RZ(rump_init());
 649 	RZ(rump_init());
 670 	RZ(rump_init());
 691 	RZ(rump_init());
 712 	RZ(rump_init());
 733 	RZ(rump_init())
 [all...]
 | 
| /src/tests/fs/hfs/ | 
| t_pathconvert.c | 52 	RZ(rump_init()); 55 	RZ(rump_pub_etfs_register(FAKEBLK, IMGNAME, RUMP_ETFS_BLK));
 
 | 
| /src/sys/external/gpl2/dts/dist/arch/riscv/boot/dts/renesas/ | 
| r9a07g043f01-smarc.dts | 3  * Device Tree Source for the RZ/Five SMARC EVK 
 |