/system/extras/libperfmgr/tests/ |
D | RequestGroupTest.cc | 34 RequestGroup req(test_str); in TEST() local 40 RequestGroup req(""); in TEST() local 57 RequestGroup req(""); in TEST() local 72 RequestGroup req(""); in TEST() local 88 RequestGroup req(""); in TEST() local 117 RequestGroup req(""); in TEST() local 132 RequestGroup req(""); in TEST() local 149 RequestGroup req(""); in TEST() local
|
/system/core/trusty/storage/proxy/ |
D | storage.c | 166 const struct storage_file_delete_req *req = r; in storage_file_delete() local 219 const struct storage_file_open_req *req = r; in storage_file_open() local 301 const struct storage_file_close_req *req = r; in storage_file_close() local 342 const struct storage_file_write_req *req = r; in storage_file_write() local 372 const struct storage_file_read_req *req = r; in storage_file_read() local 410 const struct storage_file_get_size_req *req = r; in storage_file_get_size() local 443 const struct storage_file_set_size_req *req = r; in storage_file_set_size() local
|
D | rpmb.c | 72 static int send_mmc_rpmb_req(int mmc_fd, const struct storage_rpmb_send_req* req) { in send_mmc_rpmb_req() 156 const struct storage_rpmb_send_req* req = r; in rpmb_send() local
|
D | proxy.c | 108 static int handle_req(struct storage_msg* msg, const void* req, size_t req_len) { in handle_req()
|
/system/core/trusty/storage/lib/ |
D | storage.c | 147 struct storage_file_open_req req = { .flags = flags }; in storage_open_file() local 169 struct storage_file_close_req req = { .handle = _to_handle(fh)}; in storage_close_file() local 183 struct storage_file_delete_req req = { .flags = 0, }; in storage_delete_file() local 194 struct storage_file_read_req req = { .handle = _to_handle(fh), .size = size, .offset = off }; in _read_chunk() local 229 struct storage_file_write_req req = { .handle = _to_handle(fh), .offset = off, }; in _write_req() local 271 struct storage_file_set_size_req req = { .handle = _to_handle(fh), .size = file_size, }; in storage_set_file_size() local 282 struct storage_file_get_size_req req = { .handle = _to_handle(fh), }; in storage_get_file_size() local
|
/system/extras/simpleperf/runtest/ |
D | run_and_sleep.cpp | 25 struct timespec req; in SleepFunction() local
|
/system/netd/server/ |
D | SockDiag.h | 60 inet_diag_req_v2 req; member
|
D | ClatUtils.cpp | 163 } req = { in doTcQdiscClsact() local 276 } req = { in tcFilterAddDevBpf() local
|
/system/keymaster/include/keymaster/ |
D | soft_keymaster_device.h | 76 void GetVersion(const GetVersionRequest& req, GetVersionResponse* rsp) { in GetVersion()
|
/system/bt/btif/src/ |
D | btif_core.cc | 859 btif_storage_req_t req; in btif_get_adapter_property() local 888 btif_storage_req_t req; in btif_set_adapter_property() local 1009 btif_storage_req_t req; in btif_get_remote_device_property() local 1030 btif_storage_req_t req; in btif_get_remote_device_properties() local 1053 btif_storage_req_t req; in btif_set_remote_device_property() local
|
D | btif_gatt_server.cc | 189 const auto& req = p_data->req_data.p_data->write_req; in btapp_gatts_handle_cback() local 199 const auto& req = p_data->req_data.p_data->write_req; in btapp_gatts_handle_cback() local
|
/system/connectivity/wifilogd/ |
D | raw_os.cpp | 42 int RawOs::Nanosleep(const struct timespec* req, struct timespec* rem) { in Nanosleep()
|
/system/extras/tests/storage/ |
D | wipe_blkdev.c | 55 int req; in wipe_block_device() local
|
/system/libvintf/ |
D | parse_string.cpp | 375 bool parse(const std::string &s, MatrixHal *req) { in parse() 394 std::ostream &operator<<(std::ostream &os, const MatrixHal &req) { in operator <<() 401 std::string expandInstances(const MatrixHal& req, const VersionRange& vr, bool brace) { in expandInstances() 421 std::vector<std::string> expandInstances(const MatrixHal& req) { in expandInstances()
|
/system/keymaster/tests/ |
D | android_keymaster_messages_test.cpp | 86 SupportedByAlgorithmRequest req(ver); in TEST() local 96 SupportedByAlgorithmAndPurposeRequest req(ver); in TEST() local 132 GenerateKeyRequest req(ver); in TEST() local 172 GetKeyCharacteristicsRequest req(ver); in TEST() local 515 ConfigureRequest req(ver); in TEST() local 615 UpgradeKeyResponse req(ver); in TEST() local
|
/system/core/trusty/keymaster/ipc/ |
D | trusty_keymaster_ipc.cpp | 145 keymaster_error_t trusty_keymaster_send(uint32_t command, const keymaster::Serializable& req, in trusty_keymaster_send()
|
/system/core/trusty/keymaster/ |
D | TrustyKeymaster.cpp | 34 ConfigureRequest req; in Initialize() local 55 static void ForwardCommand(enum keymaster_command command, const Serializable& req, in ForwardCommand()
|
/system/core/libusbhost/ |
D | usbhost.c | 705 struct usb_request *req = calloc(1, sizeof(struct usb_request)); in usb_request_new() local 720 void usb_request_free(struct usb_request *req) in usb_request_free() 726 int usb_request_queue(struct usb_request *req) in usb_request_queue() 769 struct usb_request *req = (struct usb_request*)urb->usercontext; in usb_request_wait() local 776 int usb_request_cancel(struct usb_request *req) in usb_request_cancel()
|
/system/core/logd/ |
D | libaudit.c | 75 struct audit_message req; in audit_send() local
|
/system/chre/core/ |
D | wifi_request_manager.cc | 89 PendingRangingRequest& req = mPendingRangingRequests.back(); in requestRanging() local 551 const PendingRangingRequest& req = mPendingRangingRequests.front(); in postRangingAsyncResult() local 572 const PendingRangingRequest& req = mPendingRangingRequests.front(); in dispatchQueuedRangingRequest() local
|
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/app/src/main/cpp/ |
D | native-lib.cpp | 80 struct timespec req; in SleepFunction() local
|
/system/core/debuggerd/client/ |
D | debuggerd_client.cpp | 124 InterceptRequest req = {.pid = pid, .dump_type = dump_type}; in debuggerd_trigger_dump() local
|
/system/chre/platform/slpi/include/chre/platform/slpi/smgr/ |
D | smr_helper.h | 85 UniquePtr<ReqStruct> *req, UniquePtr<RespStruct> *resp, in sendReqAsync()
|
/system/chre/platform/slpi/see/ |
D | see_helper.cc | 169 sns_std_attr_req req = {}; in encodeSnsStdAttrReq() local 214 sns_suid_req req = { in encodeSnsSuidReq() local 259 sns_resampler_config req = { in encodeSnsResamplerConfig() local 306 sns_std_sensor_config req = { in encodeSnsStdSensorConfig() local 365 auto req = MakeUniqueZeroFill<sns_client_request_msg>(); in prepSnsClientReq() local 1737 sns_client *client, sns_client_request_msg *req, Nanoseconds timeoutResp) { in sendSeeReqSync()
|
D | platform_sensor.cc | 304 for (const auto& req : requests) { in updateSamplingStatus() local 729 SeeSensorRequest req = { in applyRequest() local
|