Searched refs:ops (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/bionic/
H A Dsys_sem.cpp60 int semop(int id, sembuf* ops, size_t op_count) { argument
61 return semtimedop(id, ops, op_count, nullptr);
64 int semtimedop(int id, sembuf* ops, size_t op_count, const timespec* ts) { argument
66 return syscall(SYS_semtimedop, id, ops, op_count, ts);
68 return syscall(SYS_ipc, SEMTIMEDOP, id, op_count, 0, ops, ts);
/bionic/tests/
H A Dsys_sem_test.cpp57 sembuf ops[] = {{ .sem_num = 0, .sem_op = 1, .sem_flg = 0 }}; local
58 ASSERT_EQ(0, semop(id, ops, 1));
63 ops[0] = { .sem_num = 0, .sem_op = 0, .sem_flg = 0 };
65 ASSERT_EQ(-1, semtimedop(id, ops, 1, &ts));
70 ops[0] = { .sem_num = 0, .sem_op = -1, .sem_flg = 0 };
71 ASSERT_EQ(0, semop(id, ops, 1));
/bionic/libc/kernel/uapi/sound/
H A Dasoc.h210 struct snd_soc_tplg_io_ops ops; member in struct:snd_soc_tplg_ctl_hdr
/bionic/libc/versioner-dependencies/common/kernel_uapi/sound/
H A Dasoc.h210 struct snd_soc_tplg_io_ops ops; member in struct:snd_soc_tplg_ctl_hdr

Completed in 88 milliseconds