Home
last modified time | relevance | path

Searched defs:p (Results 1 – 6 of 6) sorted by relevance

/commonlibrary/c_utils/base/include/
Dpubdef.h46 #define FREE_AND_NIL(p) do { if (p) { delete (p); (p) = nullptr; } } while(0) argument
48 #define FREE_AND_NIL_ARRAY(p) do { if (p) { delete[] (p); (p) = nullptr; } } while(0) argument
Drefbase.h982 inline sptr<T>::sptr(WeakRefCounter *p, bool /* force */) in sptr()
/commonlibrary/c_utils/base/src/
Dtimer_event_handler.cpp32 TimerEventHandler::TimerEventHandler(EventReactor* p, uint32_t timeout /* ms */, bool once) in TimerEventHandler()
/commonlibrary/rust/ylong_runtime/ylong_ffrt/src/
Ddeadline.rs26 let p = ffrt_qos_interval_create(deadline_us, qos); in new() localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ssl/
Dstream.rs33 p: PhantomData<S>, field
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/
Dlinked_list.rs146 let mut p = head.next; in for_each_mut() localVariable