/system/chre/platform/shared/ |
D | platform_ble.cc | 131 bool PlatformBle::readRssiAsync(uint16_t connectionHandle) { in readRssiAsync() argument 134 return mBleApi->readRssi(connectionHandle); in readRssiAsync() 141 uint16_t connectionHandle, int8_t rssi) { in readRssiCallback() argument 144 errorCode, connectionHandle, rssi); in readRssiCallback() 147 UNUSED_VAR(connectionHandle); in readRssiCallback()
|
D | chre_api_ble.cc | 108 DLL_EXPORT bool chreBleReadRssiAsync(uint16_t connectionHandle, in chreBleReadRssiAsync() argument 114 nanoapp, connectionHandle, cookie); in chreBleReadRssiAsync() 116 UNUSED_VAR(connectionHandle); in chreBleReadRssiAsync()
|
/system/chre/core/ |
D | ble_request_manager.cc | 126 uint16_t connectionHandle, in readRssiAsync() argument 136 auto status = readRssi(connectionHandle); in readRssiAsync() 143 BleReadRssiRequest{nanoapp->getInstanceId(), connectionHandle, cookie}); in readRssiAsync() 409 uint16_t connectionHandle, int8_t rssi) { in handleReadRssi() argument 413 uint16_t connectionHandle; in handleReadRssi() member 420 response.errorCode, response.connectionHandle, response.rssi); in handleReadRssi() 426 readRssiResponse{errorCode, rssi, connectionHandle}), in handleReadRssi() 431 uint16_t connectionHandle, in handleReadRssiSync() argument 438 if (mPendingRssiRequests.front().connectionHandle != connectionHandle) { in handleReadRssiSync() 441 mPendingRssiRequests.front().connectionHandle, connectionHandle); in handleReadRssiSync() [all …]
|
/system/chre/core/include/chre/core/ |
D | ble_request_manager.h | 116 bool readRssiAsync(Nanoapp *nanoapp, uint16_t connectionHandle, 190 void handleReadRssi(uint8_t errorCode, uint16_t connectionHandle, 285 uint16_t connectionHandle; member 546 void handleReadRssiSync(uint8_t errorCode, uint16_t connectionHandle, 582 uint8_t readRssi(uint16_t connectionHandle);
|
/system/chre/platform/include/chre/platform/ |
D | platform_ble.h | 107 bool readRssiAsync(uint16_t connectionHandle);
|
/system/chre/platform/linux/ |
D | pal_ble.cc | 192 bool chrePalBleReadRssi(uint16_t connectionHandle) { in chrePalBleReadRssi() argument 194 TaskManagerSingleton::get()->addTask([connectionHandle]() { in chrePalBleReadRssi() 195 gCallbacks->readRssiCallback(CHRE_ERROR_NONE, connectionHandle, -65); in chrePalBleReadRssi()
|
/system/chre/platform/shared/include/chre/target_platform/ |
D | platform_ble_base.h | 41 static void readRssiCallback(uint8_t errorCode, uint16_t connectionHandle,
|
/system/chre/chre_api/legacy/v1_8/chre/ |
D | ble.h | 569 uint16_t connectionHandle; member 810 bool chreBleReadRssiAsync(uint16_t connectionHandle, const void *cookie);
|
/system/chre/chre_api/legacy/v1_9/chre/ |
D | ble.h | 653 uint16_t connectionHandle; member 926 bool chreBleReadRssiAsync(uint16_t connectionHandle, const void *cookie);
|
/system/chre/chre_api/include/chre_api/chre/ |
D | ble.h | 653 uint16_t connectionHandle; member 926 bool chreBleReadRssiAsync(uint16_t connectionHandle, const void *cookie);
|
/system/chre/pal/include/chre/pal/ |
D | ble.h | 267 bool (*readRssi)(uint16_t connectionHandle);
|
/system/chre/platform/shared/nanoapp/ |
D | nanoapp_support_lib_dso.cc | 377 bool chreBleReadRssiAsync(uint16_t connectionHandle, const void *cookie) { in chreBleReadRssiAsync() argument 379 return (fptr != nullptr) ? fptr(connectionHandle, cookie) : false; in chreBleReadRssiAsync()
|