/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
OverrideLog.cpp | 33 unsigned char appl_trace_level = BT_TRACE_LEVEL_DEBUG; variable 58 appl_trace_level = (unsigned char) num; 65 appl_trace_level = (unsigned char) num; 70 if (appl_trace_level == 0xFF) 71 appl_trace_level = BT_TRACE_LEVEL_DEBUG; 72 ALOGD ("%s: level=%u", __FUNCTION__, appl_trace_level); 74 if (appl_trace_level < BT_TRACE_LEVEL_DEBUG) 79 return appl_trace_level;
|
android_logmsg.cpp | 205 if (appl_trace_level < BT_TRACE_LEVEL_DEBUG) 223 if (appl_trace_level < BT_TRACE_LEVEL_DEBUG) 249 if (appl_trace_level < BT_TRACE_LEVEL_DEBUG) 273 if (appl_trace_level < BT_TRACE_LEVEL_DEBUG)
|
userial_linux.c | 50 extern UINT8 appl_trace_level; 418 ALOGD_IF((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "doWriteDelay() delay %ld ms", delay); 625 ALOGD_IF((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: enter, pbuf=%lx, len = %d\n", __func__, (unsigned long)pbuf, len); 740 ALOGD_IF((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: return %d(0x%x) bytes, errno=%d count=%d, n=%d, timeout=%d\n", __func__, 804 ALOGD_IF((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "userial_read_thread(): enqueued p_buf=%p, count=%d, length=%d\n", [all...] |
/external/libnfc-nci/halimpl/bcm2079x/include/ |
OverrideLog.h | 31 #define ALOGD(...) ((void)ALOGD_IF(appl_trace_level>=BT_TRACE_LEVEL_DEBUG, __VA_ARGS__)) 43 extern unsigned char appl_trace_level;
|
/external/libnfc-nci/src/include/ |
OverrideLog.h | 31 #define ALOGD(...) ((void)ALOGD_IF(appl_trace_level>=BT_TRACE_LEVEL_DEBUG, __VA_ARGS__)) 43 extern unsigned char appl_trace_level;
|
bt_trace.h | 161 /* External declaration for appl_trace_level here to avoid to add the declaration in all the files using APPL_TRACExxx macros */ 162 extern UINT8 appl_trace_level ; [all...] |
/external/libnfc-nci/src/adaptation/ |
OverrideLog.cpp | 57 appl_trace_level = (unsigned char) num; 64 appl_trace_level = (unsigned char) num; 69 if (appl_trace_level == 0xFF) 70 appl_trace_level = BT_TRACE_LEVEL_DEBUG; 71 ALOGD ("%s: level=%u", __FUNCTION__, appl_trace_level); 73 if (appl_trace_level < BT_TRACE_LEVEL_DEBUG) 78 return appl_trace_level;
|
NfcAdaptation.cpp | 46 UINT8 appl_trace_level = 0xff; variable
|
/packages/apps/Nfc/nci/jni/ |
NativeLlcpSocket.cpp | 118 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: enter", __FUNCTION__); 126 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: exit", __FUNCTION__); 145 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: enter", __FUNCTION__); 161 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: exit; actual len=%d", __FUNCTION__, retval);
|
PeerToPeer.cpp | 900 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: send data; jniHandle: %u nfaHandle: 0x%04X", 914 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: peer disconnected", fn); 920 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: exit OK; JNI handle: %u NFA Handle: 0x%04x", fn, jniHandle, pConn->mNfaConnHandle); 945 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: enter; jniHandle: %u bufferLen: %u", fn, jniHandle, bufferLen); 958 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: jniHandle: %u nfaHandle: 0x%04X buf len=%u", fn, pConn->mJniHandle, pConn->mNfaConnHandle, bufferLen); 970 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: waiting for data...", fn); 977 ALOGD_IF ((appl_trace_level>=BT_TRACE_LEVEL_DEBUG), "%s: exit; nfa h: 0x%X ok: %u actual len: %u", fn, pConn->mNfaConnHandle, retVal, actualLen); [all...] |
/system/bt/main/ |
bte_logmsg.c | 73 /* LayerIDs for BTA, currently everything maps onto appl_trace_level */ 158 /* LayerIDs for BTA, currently everything maps onto appl_trace_level. 200 appl_trace_level = new_level; 202 return appl_trace_level;
|
/system/bt/include/ |
bt_trace.h | 361 #define APPL_TRACE_ERROR(...) {if (appl_trace_level >= BT_TRACE_LEVEL_ERROR) LogMsg(TRACE_CTRL_GENERAL | TRACE_LAYER_NONE | TRACE_ORG_APPL | TRACE_TYPE_ERROR, ##__VA_ARGS__);} 362 #define APPL_TRACE_WARNING(...) {if (appl_trace_level >= BT_TRACE_LEVEL_WARNING) LogMsg(TRACE_CTRL_GENERAL | TRACE_LAYER_NONE | TRACE_ORG_APPL | TRACE_TYPE_WARNING, ##__VA_ARGS__);} 363 #define APPL_TRACE_API(...) {if (appl_trace_level >= BT_TRACE_LEVEL_API) LogMsg(TRACE_CTRL_GENERAL | TRACE_LAYER_NONE | TRACE_ORG_APPL | TRACE_TYPE_API, ##__VA_ARGS__);} 364 #define APPL_TRACE_EVENT(...) {if (appl_trace_level >= BT_TRACE_LEVEL_EVENT) LogMsg(TRACE_CTRL_GENERAL | TRACE_LAYER_NONE | TRACE_ORG_APPL | TRACE_TYPE_EVENT, ##__VA_ARGS__);} 365 #define APPL_TRACE_DEBUG(...) {if (appl_trace_level >= BT_TRACE_LEVEL_DEBUG) LogMsg(TRACE_CTRL_GENERAL | TRACE_LAYER_NONE | TRACE_ORG_APPL | TRACE_TYPE_DEBUG, ##__VA_ARGS__);} 366 #define APPL_TRACE_VERBOSE(...) {if (appl_trace_level >= BT_TRACE_LEVEL_VERBOSE) LogMsg(TRACE_CTRL_GENERAL | TRACE_LAYER_NONE | TRACE_ORG_APPL | TRACE_TYPE_DEBUG, ##__VA_ARGS__);} 413 /* External declaration for appl_trace_level here to avoid to add the declaration in all the files using APPL_TRACExxx macros */ 414 extern UINT8 appl_trace_level;
|
/system/bt/bta/sys/ |
bta_sys_main.c | 59 UINT8 appl_trace_level = BT_TRACE_LEVEL_WARNING; //APPL_INITIAL_TRACE_LEVEL; variable 181 appl_trace_level = APPL_INITIAL_TRACE_LEVEL; 652 appl_trace_level = level;
|
bta_sys.h | 170 extern UINT8 appl_trace_level;
|