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

1 2 3 4 56 7 8 91011>>

  /cts/tests/tests/telephony/src/android/telephony/cts/
MmsTest.java 235 final SendReq req = new SendReq(); local
237 req.setFrom(new EncodedStringValue(selfNumber));
243 req.setTo(encodedNumbers);
247 req.setSubject(new EncodedStringValue(subject));
250 req.setDate(System.currentTimeMillis() / 1000);
256 req.setBody(body);
258 req.setMessageSize(size);
260 req.setMessageClass(PduHeaders.MESSAGE_CLASS_PERSONAL_STR.getBytes());
262 req.setExpiry(DEFAULT_EXPIRY_TIME);
266 req.setPriority(DEFAULT_PRIORITY)
    [all...]
  /cts/tests/tests/batterysaving/apps/app_target_api_current/src/android/os/cts/batterysaving/app/
CommReceiver.java 86 final SetAlarmRequest req = request.getTestServiceRequest().getSetAlarm(); local
90 final int type = req.getType();
91 final long triggerTime = req.getTriggerTime();
92 final long interval = req.getRepeatInterval();
93 final boolean allowWhileIdle = req.getAllowWhileIdle();
96 new Intent(req.getIntentAction()), 0);
  /device/google/contexthub/util/nanotool/
contexthub.cpp 188 ConfigureSensorRequest req; local
190 req.config.event_type = static_cast<uint32_t>(EventType::ConfigureSensor);
191 req.config.sensor_type = static_cast<uint8_t>(spec.sensor_type);
192 req.config.command = static_cast<uint8_t>(
195 req.config.rate = static_cast<uint32_t>(spec.special_rate);
197 req.config.rate = ConfigureSensorRequest::FloatRateToFixedPoint(
200 req.config.latency = spec.latency_ns;
205 auto result = WriteEvent(req);
222 ConfigureSensorRequest req; local
224 req.config.event_type = static_cast<uint32_t>(EventType::ConfigureSensor)
    [all...]
  /device/google/cuttlefish_common/guest/commands/usbforward/
usb_server.cpp 144 AttachRequest req; local
145 if (fd_->Read(&req, sizeof(req)) != sizeof(req)) return;
159 ControlTransfer req; local
161 if (fd_->Read(&req, sizeof(req)) != sizeof(req)) return;
166 ((req.type & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_IN);
174 req));
205 DataTransfer req; local
364 RequestHeader req; local
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
OCSPReq.java 60 private OCSPRequest req; field in class:OCSPReq
64 OCSPRequest req)
66 this.req = req;
67 this.extensions = req.getTbsRequest().getRequestExtensions();
71 byte[] req)
74 this(new ASN1InputStream(req));
83 this.req = OCSPRequest.getInstance(aIn.readObject());
84 if (req == null)
88 this.extensions = req.getTbsRequest().getRequestExtensions()
    [all...]
  /external/clang/test/Analysis/
mpichecker.cpp 90 MPI_Request req; local
91 MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &req);
92 MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &req); // expected-warning{{Double nonblocking on request 'req'.}}
93 MPI_Wait(&req, MPI_STATUS_IGNORE);
97 typedef struct { MPI_Request req; } ReqStruct; member in struct:__anon15524
104 MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &rs.req);
105 MPI_Ireduce(MPI_IN_PLACE, &buf, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD, &rs.req); // expected-warning{{Double nonblocking on request 'rs.req'.}}
106 MPI_Wait(&rs.req, MPI_STATUS_IGNORE)
114 MPI_Request req; local
140 typedef struct { MPI_Request req[2][2]; } ReqStruct; member in struct:__anon15525
166 MPI_Request req[4]; local
182 MPI_Request req[4]; local
196 MPI_Request req[4]; local
209 MPI_Request req[4]; local
215 MPI_Request req; member in struct:__anon15526
234 MPI_Request req[2]; member in struct:__anon15527
256 MPI_Request req[2]; member in struct:__anon15528
288 MPI_Request req; local
299 MPI_Request req; local
324 MPI_Request req; local
331 MPI_Request req; local
339 MPI_Request req; local
    [all...]
  /external/dnsmasq/src/
netlink.c 136 } req; local
144 req.nlh.nlmsg_len = sizeof(req);
145 req.nlh.nlmsg_type = RTM_GETADDR;
146 req.nlh.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST | NLM_F_ACK;
147 req.nlh.nlmsg_pid = 0;
148 req.nlh.nlmsg_seq = ++seq;
149 req.g.rtgen_family = family;
152 while((len = sendto(daemon->netlinkfd, (void *)&req, sizeof(req), 0,
    [all...]
  /external/iproute2/genl/
ctrl.c 50 } req = { local
56 struct nlmsghdr *nlh = &req.n;
57 struct genlmsghdr *ghdr = &req.g;
66 if (rtnl_talk(&rth, nlh, nlh, sizeof(req)) < 0) {
295 } req = { local
301 struct nlmsghdr *nlh = &req.n;
334 if (rtnl_talk(&rth, nlh, nlh, sizeof(req)) < 0) {
  /external/iproute2/ip/
link_ip6tnl.c 79 } req = { local
106 if (rtnl_talk(&rth, &req.n, &req.n, sizeof(req)) < 0) {
113 len = req.n.nlmsg_len;
118 parse_rtattr(tb, IFLA_MAX, IFLA_RTA(&req.i), len);
  /external/iproute2/tc/
tc_filter.c 52 } req = { local
79 if (req.t.tcm_parent) {
84 req.t.tcm_parent = TC_H_ROOT;
86 if (req.t.tcm_parent) {
91 req.t.tcm_parent = TC_H_MAKE(TC_H_CLSACT,
94 if (req.t.tcm_parent) {
99 req.t.tcm_parent = TC_H_MAKE(TC_H_CLSACT,
105 if (req.t.tcm_parent)
109 req.t.tcm_parent = handle;
156 req.t.tcm_info = TC_H_MAKE(prio<<16, protocol)
321 } req = { local
503 } req = { local
    [all...]
  /external/ipsec-tools/src/racoon/
policy.c 305 struct ipsecrequest *req = NULL, *next; local
307 for (req = sp->req; req; req = next) {
308 next = req->next;
309 racoon_free(req);
policy.h 82 struct ipsecrequest *req; member in struct:secpolicy
  /external/libdrm/exynos/
exynos_drm.c 98 struct drm_exynos_gem_create req = { local
117 if (drmIoctl(dev->fd, DRM_IOCTL_EXYNOS_GEM_CREATE, &req)){
123 bo->handle = req.handle;
152 struct drm_exynos_gem_info req = { local
156 ret = drmIoctl(dev->fd, DRM_IOCTL_EXYNOS_GEM_GET, &req);
163 *size = req.size;
164 *flags = req.flags;
183 struct drm_gem_close req = { local
187 drmIoctl(bo->dev->fd, DRM_IOCTL_GEM_CLOSE, &req);
210 struct drm_gem_open req = local
252 struct drm_gem_flink req = { local
364 struct drm_exynos_vidi_connection req = { local
    [all...]
  /external/libdrm/freedreno/kgsl/
kgsl_ringbuffer.c 62 struct kgsl_sharedmem_free req = { local
69 ret = ioctl(bo->pipe->fd, IOCTL_KGSL_SHAREDMEM_FREE, &req);
80 struct kgsl_gpumem_alloc req = { local
91 ret = ioctl(pipe->fd, IOCTL_KGSL_GPUMEM_ALLOC, &req);
98 bo->gpuaddr = req.gpuaddr;
101 MAP_SHARED, pipe->fd, req.gpuaddr);
127 struct kgsl_ringbuffer_issueibcmds req = { local
149 req.timestamp = (uint32_t)kgsl_ring->bo->hostptr;
153 ret = ioctl(kgsl_pipe->fd, IOCTL_KGSL_RINGBUFFER_ISSUEIBCMDS, &req);
158 ring->last_timestamp = req.timestamp
    [all...]
  /external/libmojo/mojo/public/c/system/tests/
core_perftest.cc 242 struct timespec req = { local
246 int rv = nanosleep(&req, nullptr);
  /external/libnl/lib/idiag/
idiag_req_obj.c 13 #include <netlink/idiag/req.h>
29 void idiagnl_req_get(struct idiagnl_req *req)
31 nl_object_get((struct nl_object *) req);
34 void idiagnl_req_put(struct idiagnl_req *req)
36 nl_object_put((struct nl_object *) req);
44 uint8_t idiagnl_req_get_family(const struct idiagnl_req *req)
46 return req->idiag_family;
49 void idiagnl_req_set_family(struct idiagnl_req *req, uint8_t family)
51 req->idiag_family = family;
54 uint8_t idiagnl_req_get_ext(const struct idiagnl_req *req)
130 struct idiagnl_req *req = (struct idiagnl_req *) a; local
142 struct idiagnl_req *req = (struct idiagnl_req *) a; local
165 struct idiagnl_req *req = (struct idiagnl_req *) a; local
191 struct idiagnl_req *req = NULL; local
    [all...]
  /external/ltp/testcases/kernel/sched/nptl/
nptl01.c 56 pthread_mutex_t req; variable
173 call_mutex_lock(&req, buf, sizeof(buf));
180 call_cond_wait(&child, &req, buf, sizeof(buf));
181 call_mutex_unlock(&req, buf, sizeof(buf));
251 call_mutex_init(&req, buf, sizeof(buf));
271 call_mutex_lock(&req, buf, sizeof(buf));
273 call_mutex_unlock(&req, buf, sizeof(buf));
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_screen_dri.c 254 struct drm_vmw_surface_arg *req = &arg.req; local
289 req->sid = handle;
  /external/mesa3d/src/glx/
XF86dri.c 122 xXF86DRIQueryVersionReq *req; local
128 GetReq(XF86DRIQueryVersion, req);
129 req->reqType = info->codes->major_opcode;
130 req->driReqType = X_XF86DRIQueryVersion;
152 xXF86DRIQueryDirectRenderingCapableReq *req; local
158 GetReq(XF86DRIQueryDirectRenderingCapable, req);
159 req->reqType = info->codes->major_opcode;
160 req->driReqType = X_XF86DRIQueryDirectRenderingCapable;
161 req->screen = screen;
181 xXF86DRIOpenConnectionReq *req; local
231 xXF86DRIAuthConnectionReq *req; local
260 xXF86DRICloseConnectionReq *req; local
286 xXF86DRIGetClientDriverNameReq *req; local
336 xXF86DRICreateContextReq *req; local
374 xXF86DRIDestroyContextReq *req; local
397 xXF86DRICreateDrawableReq *req; local
431 xXF86DRIDestroyDrawableReq *req; local
478 xXF86DRIGetDrawableInfoReq *req; local
563 xXF86DRIGetDeviceInfoReq *req; local
    [all...]
dri2.c 230 xDRI2QueryVersionReq *req; local
236 GetReq(DRI2QueryVersion, req);
237 req->reqType = info->codes->major_opcode;
238 req->dri2ReqType = X_DRI2QueryVersion;
239 req->majorVersion = DRI2_MAJOR;
240 req->minorVersion = DRI2_MINOR;
277 xDRI2ConnectReq *req; local
282 GetReq(DRI2Connect, req);
283 req->reqType = info->codes->major_opcode;
284 req->dri2ReqType = X_DRI2Connect
347 xDRI2AuthenticateReq *req; local
375 xDRI2CreateDrawableReq *req; local
392 xDRI2DestroyDrawableReq *req; local
414 xDRI2GetBuffersReq *req; local
473 xDRI2GetBuffersReq *req; local
530 xDRI2CopyRegionReq *req; local
    [all...]
indirect_glx.c 72 xGLXMakeCurrentReq *req; local
74 GetReq(GLXMakeCurrent, req);
75 req->reqType = opcode;
76 req->glxCode = X_GLXMakeCurrent;
77 req->drawable = draw;
78 req->context = gc_id;
79 req->oldContextTag = gc_tag;
90 xGLXMakeContextCurrentReq *req; local
92 GetReq(GLXMakeContextCurrent, req);
93 req->reqType = opcode
102 xGLXMakeCurrentReadSGIReq *req; local
178 xGLXWaitGLReq *req; local
197 xGLXWaitXReq *req; local
216 xGLXUseXFontReq *req; local
241 xGLXVendorPrivateReq *req; local
292 xGLXVendorPrivateReq *req; local
    [all...]
  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 34 static xcb_glx_create_context_attribs_arb_request_t req; variable
88 req.context = context;
89 req.fbconfig = fbconfig;
90 req.screen = screen;
91 req.share_list = share_list;
92 req.is_direct = is_direct;
93 req.num_attribs = num_attribs;
138 memset(&req, 0, sizeof(req));
215 EXPECT_EQ(99u, req.context)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_maos_verts.c 315 GLuint req = 0; local
328 req |= RADEON_CP_VC_FRMT_Z;
330 req |= RADEON_CP_VC_FRMT_W0;
335 req |= RADEON_CP_VC_FRMT_N0;
339 req |= RADEON_CP_VC_FRMT_PKCOLOR;
343 req |= RADEON_CP_VC_FRMT_PKSPEC;
348 req |= RADEON_ST_BIT(unit);
352 req |= RADEON_Q_BIT(unit);
374 if ((setup_tab[i].vertex_format & req) == req)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 135 * RouteHeader firstRoute = (RouteHeader) req.getHeader( RouteHeader.NAME );
143 * nextHop = fixStrictRouting( req ); <--- Here, make the modifications as per RFC3261
151 * } else if ( req.getRequestURI().isSipURI() ) {
260 * request-URI added as last route header, new req-URI = top-route-URI
262 public void fixStrictRouting(SIPRequest req) {
264 RouteList routes = req.getRouteHeaders();
271 addr.setAddess(req.getRequestURI()); // don't clone it
275 req.setRequestURI(firstUri);
277 sipStack.getStackLogger().logDebug("post: fixStrictRouting" + req);
  /external/perfetto/src/ipc/
client_impl.cc 64 Frame::BindService* req = frame.mutable_msg_bind_service(); local
66 req->set_service_name(service_name);
93 Frame::InvokeMethod* req = frame.mutable_msg_invoke_method(); local
94 req->set_service_id(service_id);
95 req->set_method_id(remote_method_id);
96 req->set_drop_reply(drop_reply);
98 req->set_args_proto(args_proto);
183 QueuedRequest req = std::move(queued_requests_it->second); local
186 if (req.type == Frame::kMsgBindService &&
188 return OnBindServiceReply(std::move(req), frame.msg_bind_service_reply())
    [all...]

Completed in 868 milliseconds

1 2 3 4 56 7 8 91011>>