Home
last modified time | relevance | path

Searched refs:pending (Results 1 – 23 of 23) sorted by relevance

/system/extras/boottime_tools/io_analysis/
Dcheck_file_read.py352 for pending in access_list:
353 offset, valid_access_size = pending.get_valid_access(address - access_addr, l)
355 if pending.is_req_started(): # spread across multiple reads. complete alone
356 pending.queue_block_access(offset, valid_access_size)
357 if pending.is_req_complete():
358 pending.handle_req_complete(time, is_read)
359 reqs_to_remove.append(pending)
361 pending.queue_block_access(offset, valid_access_size)
362 if pending.is_req_complete():
363 reads = accesses_per_inodes.get(pending.inode, [[], [], []])
[all …]
/system/chre/core/
Dwifi_request_manager.cc188 void WifiRequestManager::handleScanResponse(bool pending, in handleScanResponse() argument
191 bool pending; in handleScanResponse() member
199 cbState->pending = pending; in handleScanResponse()
205 .handleScanResponseSync(state->pending, state->errorCode); in handleScanResponse()
498 void WifiRequestManager::handleScanResponseSync(bool pending, in handleScanResponseSync() argument
508 if (!pending && errorCode == CHRE_ERROR_NONE) { in handleScanResponseSync()
514 bool success = (pending && errorCode == CHRE_ERROR_NONE); in handleScanResponseSync()
517 pending, errorCode); in handleScanResponseSync()
524 mScanRequestResultsArePending = pending; in handleScanResponseSync()
526 if (pending) { in handleScanResponseSync()
/system/chre/platform/shared/
Dplatform_wifi.cc118 void PlatformWifiBase::scanResponseCallback(bool pending, uint8_t errorCode) { in scanResponseCallback() argument
120 .handleScanResponse(pending, errorCode); in scanResponseCallback()
/system/chre/pal/tests/src/
Dwifi_pal_impl_test.cc61 void chrePalScanResponseCallback(bool pending, uint8_t errorCode) { in chrePalScanResponseCallback() argument
63 gTest->scanResponseCallback(pending, errorCode); in chrePalScanResponseCallback()
156 void PalWifiTest::scanResponseCallback(bool pending, uint8_t errorCode) { in scanResponseCallback() argument
157 LOGI("Received scan response with pending %d error %" PRIu8, pending, in scanResponseCallback()
/system/chre/core/include/chre/core/
Dwifi_request_manager.h140 void handleScanResponse(bool pending, uint8_t errorCode);
375 void handleScanResponseSync(bool pending, uint8_t errorCode);
/system/chre/platform/shared/include/chre/target_platform/
Dplatform_wifi_base.h41 static void scanResponseCallback(bool pending, uint8_t errorCode);
/system/bt/service/doc/
DIBluetoothGattServer.txt50 * Sends a response to a currently pending read or write request. The request
67 * will remain pending until the remote device sends a handle-value
68 * confirmation. Returns false if a call to this method is pending. Otherwise
DIBluetoothGattClient.txt65 * request cannot be started, e.g. if a read is already pending on this remote
103 * request cannot be started, e.g. if a read is already pending on this remote
/system/chre/pal/include/chre/pal/
Dwifi.h95 void (*scanResponseCallback)(bool pending, uint8_t errorCode);
/system/core/libsysutils/src/
DSocketListener.cpp197 std::vector<SocketClient*> pending; in runListener() local
209 pending.push_back(c); in runListener()
215 for (SocketClient* c : pending) { in runListener()
/system/chre/pal/tests/include/
Dwifi_pal_impl_test.h36 void scanResponseCallback(bool pending, uint8_t errorCode);
/system/core/adb/daemon/
Dusb.cpp119 bool pending = false; member
489 block->pending = false; in PrepareReadBlock()
549 block->pending = false; in HandleRead()
562 if (current_block->pending) { in HandleRead()
618 block->pending = true; in SubmitRead()
677 CHECK(!write_requests_[writes_submitted_ + i].pending); in SubmitWrites()
678 write_requests_[writes_submitted_ + i].pending = true; in SubmitWrites()
/system/core/healthd/
Dhealthd_mode_charger.h35 bool pending; member
Dhealthd_mode_charger.cpp430 keys_[code].pending = true; in SetKeyCallback()
493 if (key->pending) { in ProcessKey()
500 key->pending = false; in ProcessKey()
/system/extras/memory_replay/tests/
DThreadTest.cpp77 TEST(ThreadTest, pending) { in TEST() argument
/system/core/fs_mgr/libsnapshot/android/snapshot/
Dsnapshot.proto97 // An update is pending, but has not been successfully booted yet.
104 // error, but the next reboot will finish any pending operations.
/system/bt/gd/l2cap/le/internal/
Dsignalling_manager.cc200 PendingConnection pending{ in OnConnectionRequest() local
210 … handler_->BindOnceOn(this, &LeSignallingManager::on_security_result_for_incoming, psm, pending)); in OnConnectionRequest()
/system/sepolicy/prebuilts/api/30.0/private/
Dgmscore_app.te27 # Allow GMS core to access system_update_service (e.g. to publish pending
/system/sepolicy/private/
Dgmscore_app.te27 # Allow GMS core to access system_update_service (e.g. to publish pending
/system/sepolicy/prebuilts/api/28.0/private/
Dpriv_app.te110 # Allow GMS core to access system_update_service (e.g. to publish pending
/system/sepolicy/prebuilts/api/29.0/private/
Dpriv_app.te125 # Allow GMS core to access system_update_service (e.g. to publish pending
/system/core/adb/
Dprotocol.txt186 recipient should cancel pending WRITEs or CLOSEs, but this is not a
/system/bt/btif/src/
Dbtif_rc.cc468 void fill_pdu_queue(int index, uint8_t ctype, uint8_t label, bool pending, in fill_pdu_queue() argument
472 p_dev->rc_pdu_info[index].is_rsp_pending = pending; in fill_pdu_queue()