Home
last modified time | relevance | path

Searched refs:initialized (Results 1 – 15 of 15) sorted by relevance

/system/bt/osi/src/
Dwakelock.cc57 static pthread_once_t initialized = PTHREAD_ONCE_INIT; variable
103 pthread_once(&initialized, wakelock_initialize); in wakelock_acquire()
151 pthread_once(&initialized, wakelock_initialize); in wakelock_release()
222 initialized = PTHREAD_ONCE_INIT; in wakelock_cleanup()
/system/core/logd/
DLogAudit.cpp57 initialized(false) { in LogAudit()
82 if (!initialized) { in onDataAvailable()
84 initialized = true; in onDataAvailable()
226 if ((fdDmesg >= 0) && initialized) { in logPrint()
330 if (((fdDmesg < 0) || !initialized) && !hasMetadata(str, str_len)) in logPrint()
DLogAudit.h34 bool initialized; variable
DLogKlog.h32 bool initialized; variable
DLogKlog.cpp210 initialized(false), in LogKlog()
222 if (!initialized) { in onDataAvailable()
224 initialized = true; in onDataAvailable()
557 if (initialized) { in log()
/system/hardware/interfaces/suspend/1.0/default/
DSystemSuspend.cpp124 static bool initialized = false; in enableAutosuspend() local
125 if (initialized) { in enableAutosuspend()
131 initialized = true; in enableAutosuspend()
/system/nfc/src/nfc/include/
Dce_int.h43 bool initialized; member
/system/bt/btif/src/
Dbtif_sock_thread.cc153 static int initialized; in btsock_thread_init() local
154 APPL_TRACE_DEBUG("in initialized:%d", initialized); in btsock_thread_init()
155 if (!initialized) { in btsock_thread_init()
156 initialized = 1; in btsock_thread_init()
/system/bt/service/doc/
DIBluetooth.txt80 * not been initialized yet (before the first time it gets enabled), this will
81 * return "not-initialized".
/system/core/adb/client/
Dusb_osx.cpp453 static bool initialized = false; in usb_init() local
454 if (!initialized) { in usb_init()
464 initialized = true; in usb_init()
/system/extras/simpleperf/
DJITDebugReader.h122 bool initialized = false; member
DJITDebugReader.cpp228 if (process.died || (!process.initialized && !InitializeProcess(process))) { in ReadProcess()
327 process.initialized = true; in InitializeProcess()
/system/nfc/src/nfc/tags/
Dce_t3t.cc641 (!p_cb->ndef_info.initialized)) { in ce_t3t_data_cback()
883 p_cb->ndef_info.initialized = false; in CE_T3tSetLocalNDEFMsg()
887 p_cb->ndef_info.initialized = true; in CE_T3tSetLocalNDEFMsg()
/system/chre/platform/slpi/see/
Dsee_helper.cc133 bool initialized; member
589 if (!attrVal->initialized) { in decodeSnsStdAttrValue()
590 attrVal->initialized = true; in decodeSnsStdAttrValue()
/system/bt/doc/
Dstyle_guide.md96 In nearly all cases, variables should be declared and initialized on the same line.