Searched refs:safe (Results 1 - 9 of 9) sorted by relevance
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/ |
H A D | queue.h | 79 static __inline void FillpQueueSetProdSafe(FillpQueue *q, FILLP_BOOL safe) in FillpQueueSetProdSafe() argument 81 FillpLfRingSetProdSafe(&q->ring, safe); in FillpQueueSetProdSafe() 84 static __inline void FillpQueueSetConsSafe(FillpQueue *q, FILLP_BOOL safe) in FillpQueueSetConsSafe() argument 86 FillpLfRingSetConsSafe(&q->ring, safe); in FillpQueueSetConsSafe()
|
H A D | lf_ring.h | 85 /* multi-consumers safe */ 101 /* multi-consumers safe */ 121 void FillpLfRingSetConsSafe(struct FillpLfRing *ring, FILLP_BOOL safe); 123 void FillpLfRingSetProdSafe(struct FillpLfRing *ring, FILLP_BOOL safe);
|
H A D | dympool.h | 68 void DympSetConsSafe(DympoolType *pool, FILLP_BOOL safe); 69 void DympSetProdSafe(DympoolType *pool, FILLP_BOOL safe);
|
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/ |
H A D | dympool.c | 110 void DympSetConsSafe(DympoolType *pool, FILLP_BOOL safe) in DympSetConsSafe() argument 112 FillpQueueSetConsSafe(pool->mp, safe); in DympSetConsSafe() 115 void DympSetProdSafe(DympoolType *pool, FILLP_BOOL safe) in DympSetProdSafe() argument 117 FillpQueueSetProdSafe(pool->mp, safe); in DympSetProdSafe()
|
H A D | lf_ring.c | 88 void FillpLfRingSetProdSafe(struct FillpLfRing *ring, FILLP_BOOL safe) in FillpLfRingSetProdSafe() argument 90 ring->prodSafe = safe; in FillpLfRingSetProdSafe() 93 void FillpLfRingSetConsSafe(struct FillpLfRing *ring, FILLP_BOOL safe) in FillpLfRingSetConsSafe() argument 95 ring->consSafe = safe; in FillpLfRingSetConsSafe()
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/ |
H A D | step_result_set.h | 36 StepResultSet(Time start, Conn conn, const std::string &sql, const Values &args, bool safe = false);
|
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/ |
H A D | abs_result_set.h | 303 API_EXPORT explicit AbsResultSet(bool safe);
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | step_result_set.cpp | 34 StepResultSet::StepResultSet(Time start, Conn conn, const std::string &sql, const Values &args, bool safe) in StepResultSet() argument 35 : AbsResultSet(safe), conn_(std::move(conn)), sql_(sql), args_(args) in StepResultSet()
|
H A D | abs_result_set.cpp | 80 AbsResultSet::AbsResultSet(bool safe) : globalMtx_(safe)
in AbsResultSet() argument
|
Completed in 5 milliseconds