/third_party/ltp/testcases/kernel/syscalls/futex/ |
D | futextest.h | 111 futex_t *uaddr2, int val3, int opflags) in futex_syscall() argument 120 return func((int *)uaddr, futex_op | opflags, val, timeout, (int *)uaddr2, val3); in futex_syscall() 129 struct tst_ts *timeout, int opflags) in futex_wait() argument 132 tst_ts_get(timeout), NULL, 0, opflags); in futex_wait() 140 futex_wake(enum futex_fn_type fntype, futex_t *uaddr, int nr_wake, int opflags) in futex_wake() argument 143 opflags); in futex_wake() 152 struct tst_ts *timeout, u_int32_t bitset, int opflags) in futex_wait_bitset() argument 155 tst_ts_get(timeout), NULL, bitset, opflags); in futex_wait_bitset() 164 u_int32_t bitset, int opflags) in futex_wake_bitset() argument 167 NULL, bitset, opflags); in futex_wake_bitset() [all …]
|
D | futex_wake01.c | 15 int opflags; member 46 res = futex_wake(tv->fntype, tc->f_addr, tc->nr_wake, tc->opflags); in run()
|
D | futex_wait01.c | 19 int opflags; member 49 res = futex_wait(tv->fntype, tc->f_addr, tc->f_val, &to, tc->opflags); in run()
|
/third_party/iowow/src/kv/tests/ |
D | iwkv_test9.c | 35 iwkv_opflags opflags = IWKV_NO_OVERWRITE; in iwkv_test9_1() local 36 iwrc rc = iwkv_put(db, &ikey, &ival, opflags); in iwkv_test9_1() 47 iwkv_opflags opflags = IWKV_NO_OVERWRITE; in iwkv_test9_1() local 48 iwrc rc = iwkv_put(db, &ikey, &ival, opflags); in iwkv_test9_1()
|
/third_party/iowow/src/kv/ |
D | iwkv.h | 298 IW_EXPORT iwrc iwkv_put(IWDB db, const IWKV_val *key, const IWKV_val *val, iwkv_opflags opflags); 318 iwkv_opflags opflags, IWKV_PUT_HANDLER ph, void *phop); 369 IW_EXPORT iwrc iwkv_del(IWDB db, const IWKV_val *key, iwkv_opflags opflags); 489 IW_EXPORT iwrc iwkv_cursor_set(IWKV_cursor cur, IWKV_val *val, iwkv_opflags opflags); 492 IWKV_cursor cur, IWKV_val *val, iwkv_opflags opflags, 499 IW_EXPORT iwrc iwkv_cursor_del(IWKV_cursor cur, iwkv_opflags opflags);
|
D | iwkv.c | 2437 if (found && (lx->opflags & IWKV_NO_OVERWRITE)) { in _lx_addkv() 2453 if (lx->opflags & IWKV_VAL_INCREMENT) { in _lx_addkv() 3406 iwkv_opflags opflags, IWKV_PUT_HANDLER ph, void *phop in iwkv_puth() argument 3415 if (opflags & IWKV_VAL_INCREMENT) { in iwkv_puth() 3417 opflags &= ~IWKV_NO_OVERWRITE; in iwkv_puth() 3432 .opflags = opflags, in iwkv_puth() 3440 if (lx.opflags & IWKV_SYNC) { in iwkv_puth() 3449 iwrc iwkv_put(IWDB db, const IWKV_val *key, const IWKV_val *val, iwkv_opflags opflags) { in iwkv_put() argument 3450 return iwkv_puth(db, key, val, opflags, 0, 0); in iwkv_put() 3613 iwrc iwkv_del(IWDB db, const IWKV_val *key, iwkv_opflags opflags) { in iwkv_del() argument [all …]
|
D | iwkv_internal.h | 241 iwkv_opflags opflags; /**< Operation flags */ member
|
/third_party/iowow/ |
D | Changelog | 549 * Added iwkv_opflags opflags into iwkv_del
|
/third_party/sqlite/src/ |
D | sqlite3.c | 95833 int opflags; 95835 opflags = pOp->p2; 95880 assert( !(opflags & OPFLAG_ISUPDATE) 95885 (opflags & OPFLAG_ISUPDATE) ? SQLITE_UPDATE : SQLITE_DELETE, 95890 if( opflags & OPFLAG_ISNOOP ) break; 95918 if( opflags & OPFLAG_NCHANGE ){
|