/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 | 299 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); 487 IW_EXPORT iwrc iwkv_cursor_set(IWKV_cursor cur, IWKV_val *val, iwkv_opflags opflags); 489 IW_EXPORT iwrc iwkv_cursor_seth(IWKV_cursor cur, IWKV_val *val, iwkv_opflags opflags, 496 IW_EXPORT iwrc iwkv_cursor_del(IWKV_cursor cur, iwkv_opflags opflags);
|
D | iwkv.c | 2453 if (found && (lx->opflags & IWKV_NO_OVERWRITE)) { in _lx_addkv() 2469 if (lx->opflags & IWKV_VAL_INCREMENT) { in _lx_addkv() 3770 iwkv_opflags opflags, IWKV_PUT_HANDLER ph, void *phop) { in iwkv_puth() argument 3778 if (opflags & IWKV_VAL_INCREMENT) { in iwkv_puth() 3780 opflags &= ~IWKV_NO_OVERWRITE; in iwkv_puth() 3795 .opflags = opflags, in iwkv_puth() 3809 if (lx.opflags & IWKV_SYNC) { in iwkv_puth() 3818 iwrc iwkv_put(IWDB db, const IWKV_val *key, const IWKV_val *val, iwkv_opflags opflags) { in iwkv_put() argument 3819 return iwkv_puth(db, key, val, opflags, 0, 0); in iwkv_put() 4000 iwrc iwkv_del(IWDB db, const IWKV_val *key, iwkv_opflags opflags) { in iwkv_del() argument [all …]
|
D | iwkv_internal.h | 286 iwkv_opflags opflags; /**< Operation flags */ member
|
/third_party/iowow/ |
D | Changelog | 442 * Added iwkv_opflags opflags into iwkv_del
|
/third_party/sqlite/src/ |
D | sqlite3.c | 92496 int opflags; 92498 opflags = pOp->p2; 92543 assert( !(opflags & OPFLAG_ISUPDATE) 92548 (opflags & OPFLAG_ISUPDATE) ? SQLITE_UPDATE : SQLITE_DELETE, 92553 if( opflags & OPFLAG_ISNOOP ) break; 92581 if( opflags & OPFLAG_NCHANGE ){
|