Home
last modified time | relevance | path

Searched refs:connectionHandle (Results 1 – 12 of 12) sorted by relevance

/system/chre/platform/shared/
Dplatform_ble.cc131 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()
Dchre_api_ble.cc108 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/
Dble_request_manager.cc126 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/
Dble_request_manager.h116 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/
Dplatform_ble.h107 bool readRssiAsync(uint16_t connectionHandle);
/system/chre/platform/linux/
Dpal_ble.cc192 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/
Dplatform_ble_base.h41 static void readRssiCallback(uint8_t errorCode, uint16_t connectionHandle,
/system/chre/chre_api/legacy/v1_8/chre/
Dble.h569 uint16_t connectionHandle; member
810 bool chreBleReadRssiAsync(uint16_t connectionHandle, const void *cookie);
/system/chre/chre_api/legacy/v1_9/chre/
Dble.h653 uint16_t connectionHandle; member
926 bool chreBleReadRssiAsync(uint16_t connectionHandle, const void *cookie);
/system/chre/chre_api/include/chre_api/chre/
Dble.h653 uint16_t connectionHandle; member
926 bool chreBleReadRssiAsync(uint16_t connectionHandle, const void *cookie);
/system/chre/pal/include/chre/pal/
Dble.h267 bool (*readRssi)(uint16_t connectionHandle);
/system/chre/platform/shared/nanoapp/
Dnanoapp_support_lib_dso.cc377 bool chreBleReadRssiAsync(uint16_t connectionHandle, const void *cookie) { in chreBleReadRssiAsync() argument
379 return (fptr != nullptr) ? fptr(connectionHandle, cookie) : false; in chreBleReadRssiAsync()