HomeSort by relevance Sort by last modified time
    Searched refs:flist_head (Results 1 - 25 of 29) sorted by null

1 2

  /external/fio/
cgroup.h 6 int cgroup_setup(struct thread_data *, struct flist_head *, char **);
9 void cgroup_kill(struct flist_head *list);
13 static inline int cgroup_setup(struct thread_data *td, struct flist_head *list,
24 static inline void cgroup_kill(struct flist_head *list)
flist.h 27 struct flist_head { struct
28 struct flist_head *next, *prev;
33 #define FLIST_HEAD(name) \
34 struct flist_head name = FLIST_HEAD_INIT(name)
46 static inline void __flist_add(struct flist_head *new_entry,
47 struct flist_head *prev,
48 struct flist_head *next)
64 static inline void flist_add(struct flist_head *new_entry,
65 struct flist_head *head)
70 static inline void flist_add_tail(struct flist_head *new_entry
    [all...]
diskutil.h 41 struct flist_head list;
45 struct flist_head slavelist;
64 struct flist_head slaves;
75 struct flist_head *n;
101 extern struct flist_head disk_list;
filehash.c 12 unsigned int file_hash_size = HASH_BUCKETS * sizeof(struct flist_head);
14 static struct flist_head *file_hash;
49 struct flist_head *bucket = &file_hash[hash(name)];
50 struct flist_head *n;
client.h 24 struct flist_head list;
25 struct flist_head hash_list;
26 struct flist_head arg_list;
56 struct flist_head eta_list;
59 struct flist_head cmd_list;
flow.c 8 struct flist_head list;
13 static struct flist_head *flow_list;
43 struct flist_head *n;
profile.h 21 struct flist_head list;
cgroup.c 17 struct flist_head list;
51 struct flist_head *clist)
78 void cgroup_kill(struct flist_head *clist)
80 struct flist_head *n, *tmp;
147 int cgroup_setup(struct thread_data *td, struct flist_head *clist, char **mnt)
filelock.c 20 struct flist_head list;
24 static struct flist_head *filelock_list;
57 struct flist_head *entry;
iolog.h 79 struct flist_head list;
81 struct flist_head trim_list;
server.h 34 struct flist_head list;
156 extern int fio_net_send_cmd(int, uint16_t, const void *, off_t, uint64_t *, struct flist_head *);
157 extern int fio_net_send_simple_cmd(int, uint16_t, uint64_t, struct flist_head *);
file.h 63 struct flist_head hash_list;
129 struct flist_head list;
graph.c 53 struct flist_head list;
55 struct flist_head alias;
62 struct flist_head list;
64 struct flist_head value_list;
83 struct flist_head label_list;
148 struct flist_head *entry;
159 struct flist_head *entry;
182 struct flist_head *entry;
206 struct flist_head *entry;
241 struct flist_head *entry
    [all...]
gfio.h 145 struct flist_head list;
156 struct flist_head o_list;
ioengine.h 88 struct flist_head verify_list;
131 struct flist_head list;
profile.c 7 static FLIST_HEAD(profile_list);
12 struct flist_head *n;
fio.h 215 struct flist_head verify_list;
293 struct flist_head io_hist_list;
299 struct flist_head io_log_list;
304 struct flist_head trim_list;
307 struct flist_head next_rand_list;
gettime.c 42 static struct flist_head hash[HASH_SIZE];
46 struct flist_head list;
54 struct flist_head *entry;
101 struct flist_head *entry;
server.c 46 struct flist_head list;
308 static void add_reply(uint64_t tag, struct flist_head *list)
353 uint64_t *tagptr, struct flist_head *list)
419 struct flist_head *list)
467 static void fio_server_add_fork_item(pid_t pid, struct flist_head *list)
479 static void fio_server_add_conn_pid(struct flist_head *conn_list, pid_t pid)
485 static void fio_server_add_job_pid(struct flist_head *job_list, pid_t pid)
528 static void fio_server_check_fork_items(struct flist_head *list)
530 struct flist_head *entry, *tmp;
543 static void fio_server_check_jobs(struct flist_head *job_list
    [all...]
client.c 50 static FLIST_HEAD(client_list);
51 static FLIST_HEAD(eta_list);
53 static FLIST_HEAD(arg_list);
68 static struct flist_head client_hash[FIO_CLIENT_HASH_SZ];
120 struct flist_head *entry;
201 struct flist_head *entry;
444 struct flist_head *entry;
545 struct flist_head *entry, *tmp;
582 struct flist_head *entry, *tmp;
685 struct flist_head *entry, *tmp
    [all...]
diskutil.c 20 FLIST_HEAD(disk_list);
112 struct flist_head *entry;
134 struct flist_head *entry;
283 struct flist_head *entry;
527 struct flist_head *entry;
662 struct flist_head *head)
665 struct flist_head *entry;
680 struct flist_head *entry;
ioengines.c 23 static FLIST_HEAD(engine_list);
77 struct flist_head *entry;
576 struct flist_head *entry;
  /external/fio/lib/
flist_sort.c 13 static struct flist_head *merge(void *priv,
14 int (*cmp)(void *priv, struct flist_head *a,
15 struct flist_head *b),
16 struct flist_head *a, struct flist_head *b)
18 struct flist_head head, *tail = &head;
43 int (*cmp)(void *priv, struct flist_head *a,
44 struct flist_head *b),
45 struct flist_head *head,
46 struct flist_head *a, struct flist_head *b
    [all...]
  /external/fio/t/
genzipf.c 29 struct flist_head list;
34 static struct flist_head *hash;
58 struct flist_head *l = &hash[hash_long(val, hash_bits)];
59 struct flist_head *entry;
73 struct flist_head *l = &hash[hash_long(val, hash_bits)];
202 hash = malloc(hash_size * sizeof(struct flist_head));
stest.c 19 struct flist_head list;
23 FLIST_HEAD(list);

Completed in 173 milliseconds

1 2