| /onnv/onnv-gate/usr/src/cmd/filebench/common/ |
| threadflow.h | 102 } threadflow_t; typedef in typeref:struct:threadflow 107 threadflow_t *threadflow_define(procflow_t *, char *name, 108 threadflow_t *inherit, avd_t instances); 109 threadflow_t *threadflow_find(threadflow_t *, char *); 111 void flowop_start(threadflow_t *threadflow); 113 void threadflow_allstarted(pid_t pid, threadflow_t *threadflow); 114 void threadflow_delete_all(threadflow_t **threadlist);
|
| threadflow.c | 40 static threadflow_t *threadflow_define_common(procflow_t *procflow, 41 char *name, threadflow_t *inherit, int instance); 84 threadflow_createthread(threadflow_t *threadflow) 125 threadflow_t *threadflow = procflow->pf_threads; 131 threadflow_t *newthread; 188 threadflow_kill(threadflow_t *threadflow) 217 threadflow_delete(threadflow_t **threadlist, threadflow_t *threadflow) 219 threadflow_t *entry = *threadlist; 275 threadflow_delete_all(threadflow_t **threadlist [all...] |
| flowop.h | 153 flowop_t *flowop_define(threadflow_t *, char *name, flowop_t *inherit, 162 int flowoplib_iosetup(threadflow_t *threadflow, flowop_t *flowop, 165 void flowop_endop(threadflow_t *threadflow, flowop_t *flowop, int64_t bytes); 166 void flowop_beginop(threadflow_t *threadflow, flowop_t *flowop); 167 void flowop_destruct_all_flows(threadflow_t *threadflow);
|
| flowop_library.c | 87 static int flowoplib_fdnum(threadflow_t *threadflow, flowop_t *flowop); 88 static int flowoplib_print(threadflow_t *threadflow, flowop_t *flowop); 89 static int flowoplib_write(threadflow_t *threadflow, flowop_t *flowop); 90 static int flowoplib_read(threadflow_t *threadflow, flowop_t *flowop); 92 static int flowoplib_block(threadflow_t *threadflow, flowop_t *flowop); 93 static int flowoplib_wakeup(threadflow_t *threadflow, flowop_t *flowop); 94 static int flowoplib_hog(threadflow_t *threadflow, flowop_t *flowop); 95 static int flowoplib_delay(threadflow_t *threadflow, flowop_t *flowop); 96 static int flowoplib_sempost(threadflow_t *threadflow, flowop_t *flowop); 98 static int flowoplib_semblock(threadflow_t *threadflow, flowop_t *flowop) [all...] |
| flowop.c | 41 static flowop_t *flowop_define_common(threadflow_t *threadflow, char *name, 43 static int flowop_composite(threadflow_t *threadflow, flowop_t *flowop); 144 flowop_beginop(threadflow_t *threadflow, flowop_t *flowop) 189 flowop_endop(threadflow_t *threadflow, flowop_t *flowop, int64_t bytes) 273 flowop_create_runtime_flowops(threadflow_t *threadflow, flowop_t **ops_list_ptr) 328 flowop_destruct_all_flows(threadflow_t *threadflow) 368 flowop_start(threadflow_t *threadflow) 762 flowop_define_common(threadflow_t *threadflow, char *name, flowop_t *inherit, 842 flowop_define(threadflow_t *threadflow, char *name, flowop_t *inherit, 1053 flowop_composite(threadflow_t *threadflow, flowop_t *flowop [all...] |
| fb_localfs.c | 135 static int fb_lfsflow_aiowrite(threadflow_t *threadflow, flowop_t *flowop); 136 static int fb_lfsflow_aiowait(threadflow_t *threadflow, flowop_t *flowop); 312 fb_lfsflow_aiowrite(threadflow_t *threadflow, flowop_t *flowop) 381 fb_lfsflow_aiowait(threadflow_t *threadflow, flowop_t *flowop)
|
| ipc.h | 216 threadflow_t shm_threadflow[FILEBENCH_NTHREADFLOWS];
|
| ipc.c | 526 sizeof (threadflow_t)); 598 size = sizeof (threadflow_t);
|
| parser_gram.y | 108 static void parser_flowop_define(cmd_t *, threadflow_t *, flowop_t **, int); [all...] |