Home
last modified time | relevance | path

Searched refs:req (Results 1 – 25 of 310) sorted by relevance

12345678910>>...13

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareNativeApi.java475 req.hopCountMax = 2; in enableAndConfigure()
715 ? req.baseConfigs.txMatchFilter : req.baseConfigs.rxMatchFilter); in publish()
781 ? req.baseConfigs.txMatchFilter : req.baseConfigs.rxMatchFilter); in subscribe()
858 copyArray(dest, req.addr); in sendMessage()
859 req.isHighPriority = false; in sendMessage()
1062 req.peerId = peerId; in initiateDataPath()
1065 req.channel = channel; in initiateDataPath()
1066 req.ifaceName = interfaceName; in initiateDataPath()
1141 req.acceptRequest = accept; in respondToDataPathRequest()
1142 req.ndpInstanceId = ndpId; in respondToDataPathRequest()
[all …]
/aosp12/frameworks/av/camera/ndk/
H A DNdkCaptureRequest.cpp53 if (req == nullptr || req->targets == nullptr || target == nullptr) { in ACaptureRequest_addTarget()
55 if (req != nullptr) in ACaptureRequest_addTarget()
56 req_targets = req->targets; in ACaptureRequest_addTarget()
74 if (req == nullptr || req->targets == nullptr || target == nullptr) { in ACaptureRequest_removeTarget()
76 if (req != nullptr) in ACaptureRequest_removeTarget()
77 req_targets = req->targets; in ACaptureRequest_removeTarget()
84 req->targets->mOutputs.erase(*target); in ACaptureRequest_removeTarget()
92 if (req == nullptr || entry == nullptr) { in ACaptureRequest_getConstEntry()
94 __FUNCTION__, req, tag, entry); in ACaptureRequest_getConstEntry()
127 __FUNCTION__, req, numTags, tags); in ACaptureRequest_getAllTags()
[all …]
/aosp12/packages/providers/MediaProvider/jni/
H A DFuseDaemon.cpp494 fuse->mp->FileLookup(path, req->ctx.uid, req->ctx.pid); in validate_node_path()
570 TRACE_NODE(node, req); in make_node_entry()
739 TRACE_NODE(node, req); in do_forget()
755 fuse_reply_none(req); in pf_forget()
767 fuse_reply_none(req); in pf_forget_multi()
795 TRACE_NODE(node, req); in pf_getattr()
846 TRACE_NODE(node, req); in pf_setattr()
1487 TRACE_NODE(node, req); in pf_release()
1542 TRACE_NODE(node, req); in pf_opendir()
1592 TRACE_NODE(node, req); in do_readdir_common()
[all …]
/aosp12/frameworks/av/media/libaudioclient/tests/
H A Drecord_test_output_v1.0_ref_walleye.txt5 flags(0), req. flags(0), audio source(0)
7 frame count(4800), req. frame count(4800)
14 flags(0), req. flags(0), audio source(0)
16 frame count(4800), req. frame count(4800)
23 flags(0), req. flags(0), audio source(0)
25 frame count(4800), req. frame count(4800)
32 flags(0), req. flags(0), audio source(0)
34 frame count(4800), req. frame count(4800)
41 flags(0), req. flags(0), audio source(0)
50 flags(0), req. flags(0), audio source(0)
[all …]
H A Dtrack_test_output_v1.0_ref_walleye.txt9 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0)
20 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0)
31 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0)
42 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0)
53 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0)
64 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0)
75 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0)
152 notif. frame count(962), req. notif. frame count(0), req. notif. per buff(0)
174 notif. frame count(240), req. notif. frame count(0), req. notif. per buff(2)
185 notif. frame count(0), req. notif. frame count(0), req. notif. per buff(0)
[all …]
/aosp12/hardware/google/pixel/power-libperfmgr/libperfmgr/tests/
H A DRequestGroupTest.cc34 RequestGroup req(test_str); in TEST() local
35 EXPECT_EQ(test_str, req.GetRequestValue()); in TEST()
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
143 ret = req.RemoveRequest("INTERACTION"); in TEST()
149 RequestGroup req(""); in TEST() local
[all …]
/aosp12/system/core/trusty/storage/proxy/
H A Dstorage.c168 if (req_len < sizeof(*req)) { in storage_file_delete()
175 size_t fname_len = strlen(req->name); in storage_file_delete()
222 if (req_len < sizeof(*req)) { in storage_file_open()
303 if (req_len != sizeof(*req)) { in storage_file_close()
310 int fd = remove_fd(req->handle); in storage_file_close()
344 if (req_len < sizeof(*req)) { in storage_file_write()
352 if (write_with_retry(fd, &req->data[0], req_len - sizeof(*req), in storage_file_write()
374 if (req_len != sizeof(*req)) { in storage_file_read()
381 if (req->size > MAX_READ_SIZE) { in storage_file_read()
413 if (req_len != sizeof(*req)) { in storage_file_get_size()
[all …]
H A Drpmb.c333 if (req->reliable_write_size) { in send_mmc_rpmb_req()
349 if (req->write_size) { in send_mmc_rpmb_req()
365 if (req->read_size) { in send_mmc_rpmb_req()
422 if (req->write_size) { in send_ufs_rpmb_req()
447 if (req->read_size) { in send_ufs_rpmb_req()
494 if (req_len < sizeof(*req)) { in rpmb_send()
500 size_t expected_len = sizeof(*req) + req->reliable_write_size + req->write_size; in rpmb_send()
519 if (req->read_size % MMC_BLOCK_SIZE != 0 || req->read_size > sizeof(read_buf)) { in rpmb_send()
539 size_t payload_size = req->reliable_write_size + req->write_size; in rpmb_send()
540 rc = send_virt_rpmb_req(rpmb_fd, read_buf, req->read_size, req->payload, payload_size); in rpmb_send()
[all …]
/aosp12/hardware/qcom/display/msm8909w_3100/libcopybit/
H A Dcopybit.cpp53 struct mdp_blit_req req[10]; member
515 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
521 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
547 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
550 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
615 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
617 if(!req) { in clear_copybit()
637 req->src_rect = req->dst_rect; in clear_copybit()
681 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
690 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/display/msm8996/libcopybit/
H A Dcopybit.cpp53 struct mdp_blit_req req[10]; member
513 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
519 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
545 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
548 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
613 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
615 if(!req) { in clear_copybit()
635 req->src_rect = req->dst_rect; in clear_copybit()
679 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
688 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/display/msm8998/libcopybit/
H A Dcopybit.cpp51 struct mdp_blit_req req[10]; member
513 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
519 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
545 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
548 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
613 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
615 if(!req) { in clear_copybit()
635 req->src_rect = req->dst_rect; in clear_copybit()
679 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
688 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/display/msm8909/libcopybit/
H A Dcopybit.cpp53 struct mdp_blit_req req[10]; member
515 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
521 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
547 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
550 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
615 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
617 if(!req) { in clear_copybit()
637 req->src_rect = req->dst_rect; in clear_copybit()
681 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
690 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/sdm845/display/libcopybit/
H A Dcopybit.cpp53 struct mdp_blit_req req[10]; member
515 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
521 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
547 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
550 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
615 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
617 if(!req) { in clear_copybit()
637 req->src_rect = req->dst_rect; in clear_copybit()
681 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
690 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/sm7250/display/libcopybit/
H A Dcopybit.cpp53 struct mdp_blit_req req[10]; member
515 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
521 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
539 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
542 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
607 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
609 if(!req) { in clear_copybit()
629 req->src_rect = req->dst_rect; in clear_copybit()
673 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
682 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/sm8150/display/libcopybit/
H A Dcopybit.cpp53 struct mdp_blit_req req[10]; member
515 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
521 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
539 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
542 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
607 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
609 if(!req) { in clear_copybit()
629 req->src_rect = req->dst_rect; in clear_copybit()
673 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
682 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/display/msm8994/libcopybit/
H A Dcopybit.cpp53 struct mdp_blit_req req[10]; member
498 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
504 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
525 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
528 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
593 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
595 if(!req) { in clear_copybit()
615 req->src_rect = req->dst_rect; in clear_copybit()
659 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
668 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/display/msm8084/libcopybit/
H A Dcopybit.cpp52 struct mdp_blit_req req[10]; member
493 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
499 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
512 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
515 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
581 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
583 if(!req) { in clear_copybit()
603 req->src_rect = req->dst_rect; in clear_copybit()
647 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
656 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/qcom/display/msm8226/libcopybit/
H A Dcopybit.cpp52 struct mdp_blit_req req[10]; member
493 (uint32_t)(sizeof(list->req)/sizeof(list->req[0])); in stretch_copybit()
499 mdp_blit_req* req = &list->req[list->count]; in stretch_copybit() local
512 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
515 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
581 mdp_blit_req* req = &list1.req[0]; in clear_copybit() local
583 if(!req) { in clear_copybit()
603 req->src_rect = req->dst_rect; in clear_copybit()
647 mdp_blit_req* req = &list->req[list->count++]; in fill_color() local
656 req->src_rect = req->dst_rect; in fill_color()
[all …]
/aosp12/hardware/interfaces/camera/device/3.6/default/
H A DExternalCameraOfflineSession.cpp125 if (req->frameIn->mFourcc != V4L2_PIX_FMT_MJPEG && req->frameIn->mFourcc != V4L2_PIX_FMT_Z16) { in threadLoop()
127 req->frameIn->mFourcc & 0xFF, in threadLoop()
133 int res = requestBufferStart(req->buffers); in threadLoop()
184 for (auto& halBuf : req->buffers) { in threadLoop()
344 result.frameNumber = req->frameNumber; in processCaptureResult()
351 if (req->buffers[i].fenceTimeout) { in processCaptureResult()
358 notifyError(req->frameNumber, req->buffers[i].streamId, ErrorCode::ERROR_BUFFER); in processCaptureResult()
371 fillCaptureResult(req->setting, req->shutterTs); in processCaptureResult()
374 req->setting.unlock(rawResult); in processCaptureResult()
418 const std::shared_ptr<HalRequest>& req, in processCaptureRequestError() argument
[all …]
/aosp12/system/netd/server/
H A DOffloadUtils.cpp124 rv = send(fd, req, len, 0); in sendAndProcessNetlinkResponse()
178 } req = { in doTcQdiscClsact() local
181 .nlmsg_len = sizeof(req), in doTcQdiscClsact()
204 return sendAndProcessNetlinkResponse(&req, sizeof(req)); in doTcQdiscClsact()
291 } req = { in tcFilterAddDevBpf() local
294 .nlmsg_len = sizeof(req), in tcFilterAddDevBpf()
356 strncpy(req.options.name.str, name, sizeof(req.options.name.str)); in tcFilterAddDevBpf()
358 return sendAndProcessNetlinkResponse(&req, sizeof(req)); in tcFilterAddDevBpf()
366 } req = { in tcFilterDelDev() local
369 .nlmsg_len = sizeof(req), in tcFilterDelDev()
[all …]
/aosp12/hardware/interfaces/radio/1.0/
H A DISapCallback.hal23 * @param token Id to match req-resp. Value must match the one in req.
33 * @param token Id to match req-resp. Value must match the one in req.
40 * @param token Id to match req-resp. Value must match the one in req.
48 * @param token Id to match req-resp. Value must match the one in req.
66 * @param token Id to match req-resp. Value must match the one in req.
82 * @param token Id to match req-resp. Value must match the one in req.
97 * @param token Id to match req-resp. Value must match the one in req.
111 * @param token Id to match req-resp. Value must match the one in req.
119 * @param token Id to match req-resp. Value must match the one in req.
135 * @param token Id to match req-resp. Value must match the one in req.
[all …]
/aosp12/hardware/interfaces/automotive/can/1.0/default/libnetdevice/
H A Dvlan.cpp36 nl::MessageFactory<ifinfomsg> req(RTM_NEWLINK, in add() local
38 req.add(IFLA_IFNAME, vlan); in add()
39 req.add<uint32_t>(IFLA_LINK, ethidx); in add()
42 auto linkinfo = req.addNested(IFLA_LINKINFO); in add()
43 req.add(IFLA_INFO_KIND, "vlan"); in add()
46 auto linkinfo = req.addNested(IFLA_INFO_DATA); in add()
47 req.add(IFLA_VLAN_ID, id); in add()
52 return sock.send(req) && sock.receiveAck(req); in add()
/aosp12/hardware/qcom/display/msm8960/libcopybit/
H A Dcopybit.cpp214 req->alpha = dev->mAlpha; in set_infos()
215 req->transp_mask = MDP_TRANSP_NOP; in set_infos()
216 req->flags = dev->mFlags | flags; in set_infos()
222 req->flags |= MDP_BLEND_FG_PREMULT; in set_infos()
244 l->req[i].src.width, in msm_copybit()
251 l->req[i].dst.width, in msm_copybit()
258 l->req[i].flags in msm_copybit()
452 const uint32_t maxCount = sizeof(list.req)/sizeof(list.req[0]); in stretch_copybit()
459 mdp_blit_req* req = &list.req[list.count]; in stretch_copybit() local
472 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
[all …]
/aosp12/frameworks/wilhelm/tests/sandbox/
H A Dsrcsink.c67 &audioSnk, 1, ids, req); in main()
74 &audioSnk, 1, ids, req); in main()
86 &audioSnk, 1, ids, req); in main()
98 &audioSnk, 1, ids, req); in main()
111 &audioSnk, 1, ids, req); in main()
116 &audioSnk, 1, ids, req); in main()
124 &audioSnk, 1, ids, req); in main()
129 &audioSnk, 1, ids, req); in main()
137 &audioSnk, 1, ids, req); in main()
142 &audioSnk, 1, ids, req); in main()
[all …]
/aosp12/system/core/trusty/storage/lib/
H A Dstorage.c147 struct storage_file_open_req req = { .flags = flags }; in storage_open_file() local
148 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)name, strlen(name)}}; in storage_open_file()
169 struct storage_file_close_req req = { .handle = _to_handle(fh)}; in storage_close_file() local
170 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}}; in storage_close_file()
183 struct storage_file_delete_req req = { .flags = 0, }; in storage_delete_file() local
184 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)name, strlen(name)}}; in storage_delete_file()
195 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}}; in _read_chunk()
230 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)buf, size}}; in _write_req()
272 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}}; in storage_set_file_size()
282 struct storage_file_get_size_req req = { .handle = _to_handle(fh), }; in storage_get_file_size() local
[all …]

12345678910>>...13