HomeSort by relevance Sort by last modified time
    Searched defs:req (Results 176 - 200 of 753) sorted by null

1 2 3 4 5 6 78 91011>>

  /hardware/qcom/display/msm8996/libcopybit/
copybit.cpp 53 struct mdp_blit_req req[10]; member in struct:blitReq
229 struct mdp_blit_req *req, int flags)
231 req->alpha = dev->mAlpha;
232 req->fps = dev->dynamic_fps;
233 req->transp_mask = MDP_TRANSP_NOP;
234 req->flags = dev->mFlags | flags;
237 req->flags |= MDP_MEMORY_ID_TYPE_FB;
240 req->flags |= MDP_BLEND_FG_PREMULT;
267 l->req[i].src.width,
268 l->req[i].src.height
    [all...]
  /hardware/qcom/display/msm8998/libcopybit/
copybit.cpp 51 struct mdp_blit_req req[10]; member in struct:blitReq
229 struct mdp_blit_req *req, int flags)
231 req->alpha = dev->mAlpha;
232 req->fps = dev->dynamic_fps;
233 req->transp_mask = MDP_TRANSP_NOP;
234 req->flags = dev->mFlags | flags;
237 req->flags |= MDP_MEMORY_ID_TYPE_FB;
240 req->flags |= MDP_BLEND_FG_PREMULT;
267 l->req[i].src.width,
268 l->req[i].src.height
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httputil/
reverseproxy_test.go 265 req, _ := http.NewRequest("GET", frontend.URL+tt.reqSuffix, nil)
266 req.Close = true
267 res, err := frontend.Client().Do(req)
301 req, _ := http.NewRequest("GET", frontend.URL, nil)
302 req.Close = true
303 res, err := frontend.Client().Do(req)
376 func req(t *testing.T, v string) *http.Request { func
377 req, err := http.ReadRequest(bufio.NewReader(strings.NewReader(v)))
381 return req
394 r := req(t, "GET / HTTP/1.0\r\n\r\n"
    [all...]
  /prebuilts/go/linux-x86/src/net/http/httputil/
reverseproxy_test.go 265 req, _ := http.NewRequest("GET", frontend.URL+tt.reqSuffix, nil)
266 req.Close = true
267 res, err := frontend.Client().Do(req)
301 req, _ := http.NewRequest("GET", frontend.URL, nil)
302 req.Close = true
303 res, err := frontend.Client().Do(req)
376 func req(t *testing.T, v string) *http.Request { func
377 req, err := http.ReadRequest(bufio.NewReader(strings.NewReader(v)))
381 return req
394 r := req(t, "GET / HTTP/1.0\r\n\r\n"
    [all...]
  /system/bt/btif/src/
btif_gatt_server.cc 189 const auto& req = p_data->req_data.p_data->write_req; local
190 vector<uint8_t> value(req.value, req.value + req.len);
193 p_data->req_data.remote_bda, req.handle, req.offset,
194 req.need_rsp, req.is_prep, value);
199 const auto& req = p_data->req_data.p_data->write_req; local
200 vector<uint8_t> value(req.value, req.value + req.len)
    [all...]
  /system/core/trusty/storage/lib/
storage.c 147 struct storage_file_open_req req = { .flags = flags }; local
148 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)name, strlen(name)}};
169 struct storage_file_close_req req = { .handle = _to_handle(fh)}; local
170 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}};
183 struct storage_file_delete_req req = { .flags = 0, }; local
184 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)name, strlen(name)}};
194 struct storage_file_read_req req = { .handle = _to_handle(fh), .size = size, .offset = off } local
229 struct storage_file_write_req req = { .handle = _to_handle(fh), .offset = off, }; local
271 struct storage_file_set_size_req req = { .handle = _to_handle(fh), .size = file_size, }; local
282 struct storage_file_get_size_req req = { .handle = _to_handle(fh), }; local
    [all...]
  /system/core/trusty/storage/proxy/
rpmb.c 82 const struct storage_rpmb_send_req *req = r; local
84 if (req_len < sizeof(*req)) {
86 req_len, sizeof(*req));
92 sizeof(*req) + req->reliable_write_size + req->write_size;
100 const uint8_t *write_buf = req->payload;
101 if (req->reliable_write_size) {
102 if ((req->reliable_write_size % MMC_BLOCK_SIZE) != 0) {
103 ALOGW("invalid reliable write size %u\n", req->reliable_write_size)
    [all...]
  /system/iot/attestation/atap/test/
atap_util_unittest.cpp 156 AtapInnerCaRequest req; local
157 atap_memset(&req, 0, sizeof(AtapInnerCaRequest));
158 alloc_test_cert_chain(&req.auth_key_cert_chain);
159 alloc_test_blob(&req.signature);
160 atap_memset(req.product_id_hash, 0x66, ATAP_SHA256_DIGEST_LEN);
161 alloc_test_blob(&req.RSA_pubkey);
162 alloc_test_blob(&req.ECDSA_pubkey);
163 alloc_test_blob(&req.edDSA_pubkey);
164 uint32_t size = inner_ca_request_serialized_size(&req);
167 uint8_t* end = append_inner_ca_request_to_buf(buf, &req);
193 AtapInnerCaRequest req; local
226 AtapInnerCaRequest req; local
257 AtapInnerCaRequest req; local
284 AtapCaRequest req; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 335 final SendReq req = new SendReq(); local
339 req.setFrom(new EncodedStringValue(lineNumber));
345 req.setTo(encodedNumbers);
349 req.setSubject(new EncodedStringValue(subject));
352 req.setDate(System.currentTimeMillis() / 1000);
358 req.setBody(body);
360 req.setMessageSize(size);
362 req.setMessageClass(PduHeaders.MESSAGE_CLASS_PERSONAL_STR.getBytes());
364 req.setExpiry(DEFAULT_EXPIRY_TIME);
367 req.setPriority(DEFAULT_PRIORITY)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareNativeApi.java 360 NanEnableRequest req = new NanEnableRequest(); local
362 req.operateInBand[NanBandIndex.NAN_BAND_24GHZ] = true;
363 req.operateInBand[NanBandIndex.NAN_BAND_5GHZ] = configRequest.mSupport5gBand;
364 req.hopCountMax = 2;
365 req.configParams.masterPref = (byte) configRequest.mMasterPreference;
366 req.configParams.disableDiscoveryAddressChangeIndication = !notifyIdentityChange;
367 req.configParams.disableStartedClusterIndication = !notifyIdentityChange;
368 req.configParams.disableJoinedClusterIndication = !notifyIdentityChange;
369 req.configParams.includePublishServiceIdsInBeacon = true;
370 req.configParams.numberOfPublishServiceIdsInBeacon = 0
440 NanConfigRequest req = new NanConfigRequest(); local
559 NanPublishRequest req = new NanPublishRequest(); local
624 NanSubscribeRequest req = new NanSubscribeRequest(); local
710 NanTransmitFollowupRequest req = new NanTransmitFollowupRequest(); local
910 NanInitiateDataPathRequest req = new NanInitiateDataPathRequest(); local
986 NanRespondToDataPathIndicationRequest req = new NanRespondToDataPathIndicationRequest(); local
    [all...]
  /packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/
SpeedMeasurementController.java 322 UsbRequest req = mUsbConnection.requestWait(); local
323 if (req == null) {
327 req.close();
348 UsbRequest req = mUsbConnection.requestWait(); local
349 if (req == null) {
353 req.close();
395 UsbRequest req = mUsbConnection.requestWait(); local
396 if (req == null) {
400 req.close();
  /bionic/libc/kernel/uapi/linux/
target_core_user.h 59 } req; member in union:tcmu_cmd_entry::__anon1154
  /bootable/recovery/
fuse_sideload.cpp 117 const fuse_init_in* req = static_cast<const fuse_init_in*>(data); local
122 if (req->major != FUSE_KERNEL_VERSION || req->minor < 6) {
123 printf("Fuse kernel version mismatch: Kernel version %d.%d, Expected at least %d.6", req->major,
124 req->minor, FUSE_KERNEL_VERSION);
129 out.minor = MIN(req->minor, FUSE_KERNEL_MINOR_VERSION);
136 if (req->minor <= 22) {
142 out.max_readahead = req->max_readahead;
281 const fuse_read_in* req = static_cast<const fuse_read_in*>(data); local
282 uint64_t offset = req->offset
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioFocusTest.java 48 AudioFocusRequest req = null; local
51 req = new AudioFocusRequest.Builder(AudioManager.AUDIOFOCUS_GAIN)
59 assertNull("Shouldn't be able to create delayed request without listener", req);
63 AudioFocusRequest req = null; local
66 req = new AudioFocusRequest.Builder(AudioManager.AUDIOFOCUS_GAIN)
74 assertNull("Shouldn't be able to create pause-on-duck request without listener", req);
  /cts/tests/tests/voiceinteraction/testapp/src/android/voiceinteraction/testapp/
TestApp.java 147 ConfirmationRequest req = new VoiceInteractor.ConfirmationRequest(prompt, mTestinfo) { local
166 mInteractor.submitRequest(req);
171 CompleteVoiceRequest req = new VoiceInteractor.CompleteVoiceRequest(prompt, mTestinfo) { local
190 mInteractor.submitRequest(req);
195 AbortVoiceRequest req = new VoiceInteractor.AbortVoiceRequest(prompt, mTestinfo) { local
213 mInteractor.submitRequest(req);
222 PickOptionRequest req = new VoiceInteractor.PickOptionRequest(prompt, options, mTestinfo) { local
248 mInteractor.submitRequest(req);
252 CommandRequest req = new VoiceInteractor.CommandRequest(Utils.TEST_COMMAND, mTestinfo) { local
277 mInteractor.submitRequest(req);
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
MyAutofillService.java 239 DalCheckRequirement req = mPreferences.getDalCheckRequirement(); local
240 mDalRepository.checkValid(req, new DalInfo(webDomain, packageName),
  /device/google/contexthub/contexthubhal/
NanohubHidlAdapter.cpp 367 struct apps_disable_request_t req; local
370 msg.message_len = sizeof(req);
371 msg.message = &req;
372 req.app_name.id = appId;
446 struct apps_enable_request_t req; local
449 msg.message_len = sizeof(req);
450 req.app_name.id = appId;
451 msg.message = &req;
477 struct apps_disable_request_t req; local
480 msg.message_len = sizeof(req);
    [all...]
  /device/google/contexthub/contexthubhal/test/
main.cpp 273 apps_enable_request_t req; local
274 req.app_name.id = appId;
275 cli.sendMessageToSystem(CONTEXT_HUB_APPS_ENABLE, &req, sizeof(req));
280 apps_disable_request_t req; local
281 req.app_name.id = appId;
282 cli.sendMessageToSystem(CONTEXT_HUB_APPS_DISABLE, &req, sizeof(req));
287 load_app_request_t *req = NULL; local
289 req = (load_app_request_t *)loadFile(appFileName, &fileSize)
301 unload_app_request_t req; local
308 query_apps_request_t req; local
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/io/
xs_wire.h 117 CHAR8 req[XENSTORE_RING_SIZE]; /* Requests to xenstore daemon. */ member in struct:xenstore_domain_interface
  /external/deqp/external/vulkancts/framework/vulkan/
vkQueryUtil.cpp 237 VkMemoryRequirements req; local
238 vk.getBufferMemoryRequirements(device, buffer, &req);
239 return req;
244 VkMemoryRequirements req; local
245 vk.getImageMemoryRequirements(device, image, &req);
246 return req;
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ContextPathTest.java 117 HttpServletRequest req = testControl.createMock(HttpServletRequest.class); local
120 expect(req.getMethod()).andReturn("GET").anyTimes();
121 expect(req.getRequestURI()).andReturn("/bar/foo").anyTimes();
122 expect(req.getServletPath()).andReturn("/bar/foo").anyTimes();
123 expect(req.getContextPath()).andReturn("").anyTimes();
127 guiceFilter.doFilter(req, res, testFilterChain);
241 HttpServletRequest req = testControl.createMock(HttpServletRequest.class); local
244 expect(req.getMethod()).andReturn("GET").anyTimes();
245 expect(req.getRequestURI()).andReturn(requestURI).anyTimes();
246 expect(req.getServletPath()).andReturn(servletPath).anyTimes()
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ULocaleCollationTest.java 47 public Object create(ULocale req) {
48 return Collator.getInstance(req);
123 String req,
130 int reqValid = loccmp(req, valid);
139 logln("Ok: " + label + "; req=" + req + ", valid=" + valid +
142 errln("FAIL: " + label + "; req=" + req + ", valid=" + valid +
144 (reqOK ? "" : "\n req !" + expReqValid + " valid") +
217 ULocale req = new ULocale(requestedLocale) local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
ULocaleCollationTest.java 44 public Object create(ULocale req) {
45 return Collator.getInstance(req);
120 String req,
127 int reqValid = loccmp(req, valid);
136 logln("Ok: " + label + "; req=" + req + ", valid=" + valid +
139 errln("FAIL: " + label + "; req=" + req + ", valid=" + valid +
141 (reqOK ? "" : "\n req !" + expReqValid + " valid") +
214 ULocale req = new ULocale(requestedLocale) local
    [all...]
  /external/iproute2/bridge/
fdb.c 320 } req = { local
362 addattr32(&req.n, sizeof(req), IFLA_MASTER, br_ifindex);
374 req.ifm.ifi_index = filter_index;
377 if (rtnl_dump_request(&rth, RTM_GETNEIGH, &req.ifm, msg_size) < 0) {
408 } req = { local
461 req.ndm.ndm_flags |= NTF_SELF;
463 req.ndm.ndm_flags |= NTF_MASTER;
465 req.ndm.ndm_flags |= NTF_ROUTER;
468 req.ndm.ndm_state |= NUD_PERMANENT
    [all...]
link.c 269 } req = { local
376 req.ifm.ifi_index = ll_name_to_index(d);
377 if (req.ifm.ifi_index == 0) {
385 nest = addattr_nest(&req.n, sizeof(req),
389 addattr8(&req.n, sizeof(req), IFLA_BRPORT_GUARD, bpdu_guard);
391 addattr8(&req.n, sizeof(req), IFLA_BRPORT_MODE, hairpin);
393 addattr8(&req.n, sizeof(req), IFLA_BRPORT_FAST_LEAVE
    [all...]

Completed in 727 milliseconds

1 2 3 4 5 6 78 91011>>