Home
last modified time | relevance | path

Searched full:request (Results 1 – 25 of 34796) sorted by relevance

12345678910>>...1392

/aosp_15_r20/external/oj-libjdwp/src/share/back/
H A Dinvoker.c102 createGlobalRefs(JNIEnv *env, InvokeRequest *request) in createGlobalRefs() argument
115 if ( request->argumentCount > 0 ) { in createGlobalRefs()
117 argRefs = jvmtiAllocate((jint)(request->argumentCount*sizeof(jobject))); in createGlobalRefs()
122 (void)memset(argRefs, 0, request->argumentCount*sizeof(jobject)); in createGlobalRefs()
127 saveGlobalRef(env, request->clazz, &clazz); in createGlobalRefs()
133 if ( error == JVMTI_ERROR_NONE && request->instance != NULL ) { in createGlobalRefs()
134 saveGlobalRef(env, request->instance, &instance); in createGlobalRefs()
142 argumentTag = firstArgumentTypeTag(request->methodSignature, &cursor); in createGlobalRefs()
143 argument = request->arguments; in createGlobalRefs()
145 if ( argIndex > request->argumentCount ) { in createGlobalRefs()
[all …]
/aosp_15_r20/external/google-cloud-java/java-compute/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/stub/
H A DHttpJsonInstancesStub.java128 request -> {
132 serializer.putPathParam(fields, "instance", request.getInstance());
133 serializer.putPathParam(fields, "project", request.getProject());
134 serializer.putPathParam(fields, "zone", request.getZone());
138 request -> {
143 fields, "networkInterface", request.getNetworkInterface());
144 if (request.hasRequestId()) {
145 serializer.putQueryParam(fields, "requestId", request.getRequestId());
150 request ->
154 request.getAccessConfigResource(),
[all …]
H A DHttpJsonInstanceGroupManagersStub.java99 request -> {
104 fields, "instanceGroupManager", request.getInstanceGroupManager());
105 serializer.putPathParam(fields, "project", request.getProject());
106 serializer.putPathParam(fields, "zone", request.getZone());
110 request -> {
114 if (request.hasRequestId()) {
115 serializer.putQueryParam(fields, "requestId", request.getRequestId());
120 request ->
124 request
134 (AbandonInstancesInstanceGroupManagerRequest request, Operation response) -> {
[all …]
H A DHttpJsonRegionInstanceGroupManagersStub.java99 request -> {
104 fields, "instanceGroupManager", request.getInstanceGroupManager());
105 serializer.putPathParam(fields, "project", request.getProject());
106 serializer.putPathParam(fields, "region", request.getRegion());
110 request -> {
114 if (request.hasRequestId()) {
115 serializer.putQueryParam(fields, "requestId", request.getRequestId());
120 request ->
124 request
134 (AbandonInstancesRegionInstanceGroupManagerRequest request,
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/http/src/
Drequest.rs1 //! HTTP request types.
4 //! `Request` type itself as well as a builder to create requests. Typically
5 //! you'll import the `http::Request` type rather than reaching into this
10 //! Creating a `Request` to send
13 //! use http::{Request, Response};
15 //! let mut request = Request::builder()
20 //! request = request.header("Awesome", "yes");
23 //! let response = send(request.body(()).unwrap());
29 //! fn send(req: Request<()>) -> Response<()> {
35 //! Inspecting a request to see what was sent.
[all …]
/aosp_15_r20/external/googleapis/google/cloud/alloydb/v1/
H A Dservice.proto195 // instance exists in the cluster as well as this request, then API will
198 // created. If the primary instance is a part of the request payload, then
484 // Optional. An optional request ID to identify requests. Specify a unique
485 // request ID so that if you must retry your request, the server will know to
486 // ignore the request if it has already been completed. The server will
487 // guarantee that for at least 60 minutes since the first request.
489 // For example, consider a situation where you make an initial request and
490 // the request times out. If you make the request again with the same request
491 // ID, the server can check if original operation with the same request ID
492 // was received, and if so, will ignore the second request. This prevents
[all …]
/aosp_15_r20/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DCallTest.java128 Request request = new Request.Builder() in get() local
133 executeSynchronously(request) in get()
150 Request request = new Request.Builder() in buildRequestUsingHttpUrl() local
153 assertEquals(httpUrl, request.httpUrl()); in buildRequestUsingHttpUrl()
155 executeSynchronously(request).assertSuccessful(); in buildRequestUsingHttpUrl()
159 Request.Builder requestBuilder = new Request.Builder(); in invalidScheme()
169 Request.Builder requestBuilder = new Request.Builder(); in invalidPort()
181 Request request = new Request.Builder() in getReturns500() local
185 executeSynchronously(request) in getReturns500()
210 Request request = new Request.Builder() in repeatedHeaderNames() local
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/core/http-auth-aws/src/test/java/software/amazon/awssdk/http/auth/aws/internal/signer/
H A DDefaultAwsV4HttpSignerTest.java58 SignRequest<? extends AwsCredentialsIdentity> request = generateBasicRequest( in sign_WithNoAdditonalProperties_DelegatesToHeaderSigner() local
66 SignedRequest signedRequest = signer.sign(request); in sign_WithNoAdditonalProperties_DelegatesToHeaderSigner()
68 assertThat(signedRequest.request().firstMatchingHeader("Authorization")).isPresent(); in sign_WithNoAdditonalProperties_DelegatesToHeaderSigner()
73 AsyncSignRequest<? extends AwsCredentialsIdentity> request = generateBasicAsyncRequest( in signAsync_WithNoAdditonalProperties_DelegatesToHeaderSigner() local
81 AsyncSignedRequest signedRequest = signer.signAsync(request).join(); in signAsync_WithNoAdditonalProperties_DelegatesToHeaderSigner()
83 assertThat(signedRequest.request().firstMatchingHeader("Authorization")).isPresent(); in signAsync_WithNoAdditonalProperties_DelegatesToHeaderSigner()
88 SignRequest<? extends AwsCredentialsIdentity> request = generateBasicRequest( in sign_WithQueryAuthLocation_DelegatesToQuerySigner() local
95 SignedRequest signedRequest = signer.sign(request); in sign_WithQueryAuthLocation_DelegatesToQuerySigner()
97 … assertThat(signedRequest.request().firstMatchingRawQueryParameter("X-Amz-Signature")).isPresent(); in sign_WithQueryAuthLocation_DelegatesToQuerySigner()
102 AsyncSignRequest<? extends AwsCredentialsIdentity> request = generateBasicAsyncRequest( in signAsync_WithQueryAuthLocation_DelegatesToQuerySigner() local
[all …]
/aosp_15_r20/external/googleapis/google/cloud/alloydb/v1beta/
H A Dservice.proto195 // instance exists in the cluster as well as this request, then API will
198 // created. If the primary instance is a part of the request payload, then
492 // Optional. An optional request ID to identify requests. Specify a unique
493 // request ID so that if you must retry your request, the server will know to
494 // ignore the request if it has already been completed. The server will
495 // guarantee that for at least 60 minutes since the first request.
497 // For example, consider a situation where you make an initial request and
498 // the request times out. If you make the request again with the same request
499 // ID, the server can check if original operation with the same request ID
500 // was received, and if so, will ignore the second request. This prevents
[all …]
/aosp_15_r20/external/googleapis/google/cloud/alloydb/v1alpha/
H A Dservice.proto195 // instance exists in the cluster as well as this request, then API will
198 // created. If the primary instance is a part of the request payload, then
492 // Optional. An optional request ID to identify requests. Specify a unique
493 // request ID so that if you must retry your request, the server will know to
494 // ignore the request if it has already been completed. The server will
495 // guarantee that for at least 60 minutes since the first request.
497 // For example, consider a situation where you make an initial request and
498 // the request times out. If you make the request again with the same request
499 // ID, the server can check if original operation with the same request ID
500 // was received, and if so, will ignore the second request. This prevents
[all …]
/aosp_15_r20/external/sdk-platform-java/gapic-generator-java/src/test/java/com/google/api/generator/gapic/composer/grpc/goldens/
H A DGrpcRoutingHeadersStub.golden12 import com.google.explicit.dynamic.routing.header.Request;
32 private static final MethodDescriptor<Request, Empty> example1TestMethodDescriptor =
33 MethodDescriptor.<Request, Empty>newBuilder()
37 .setRequestMarshaller(ProtoUtils.marshaller(Request.getDefaultInstance()))
41 private static final MethodDescriptor<Request, Empty> example2TestMethodDescriptor =
42 MethodDescriptor.<Request, Empty>newBuilder()
46 .setRequestMarshaller(ProtoUtils.marshaller(Request.getDefaultInstance()))
50 private static final MethodDescriptor<Request, Empty> example3TestMethodDescriptor =
51 MethodDescriptor.<Request, Empty>newBuilder()
55 .setRequestMarshaller(ProtoUtils.marshaller(Request.getDefaultInstance()))
[all …]
/aosp_15_r20/external/google-cloud-java/java-alloydb/proto-google-cloud-alloydb-v1alpha/src/main/proto/google/cloud/alloydb/v1alpha/
H A Dservice.proto195 // instance exists in the cluster as well as this request, then API will
198 // created. If the primary instance is a part of the request payload, then
424 // Optional. An optional request ID to identify requests. Specify a unique
425 // request ID so that if you must retry your request, the server will know to
426 // ignore the request if it has already been completed. The server will
427 // guarantee that for at least 60 minutes since the first request.
429 // For example, consider a situation where you make an initial request and
430 // the request times out. If you make the request again with the same request
431 // ID, the server can check if original operation with the same request ID
432 // was received, and if so, will ignore the second request. This prevents
[all …]
/aosp_15_r20/external/google-cloud-java/java-alloydb/proto-google-cloud-alloydb-v1beta/src/main/proto/google/cloud/alloydb/v1beta/
H A Dservice.proto195 // instance exists in the cluster as well as this request, then API will
198 // created. If the primary instance is a part of the request payload, then
424 // Optional. An optional request ID to identify requests. Specify a unique
425 // request ID so that if you must retry your request, the server will know to
426 // ignore the request if it has already been completed. The server will
427 // guarantee that for at least 60 minutes since the first request.
429 // For example, consider a situation where you make an initial request and
430 // the request times out. If you make the request again with the same request
431 // ID, the server can check if original operation with the same request ID
432 // was received, and if so, will ignore the second request. This prevents
[all …]
/aosp_15_r20/external/mdnsresponder/mDNSShared/
H A Duds_daemon.c93 typedef void (*req_termination_fn)(request_state *request);
100 request_state *request; member
112 request_state *request; member
141 // for each new request. This is because, until we've read the ipc_msg_hdr to find out what the
161 registered_record_entry *reg_recs; // list of registrations for a connection-oriented request
345 …et req->terminate to a bogus value so we know if abort_request() gets called again for this request in abort_request()
358 … reply_state *create_reply(const reply_op_t op, const size_t datalen, request_state *const request) in create_reply() argument
379 reply->mhdr->client_context = request->hdr.client_context; in create_reply()
385 // Append a reply to the list in a request object
386 // If our request is sharing a connection, then we append our reply_state onto the primary's list
[all …]
/aosp_15_r20/external/google-cloud-java/java-compute/google-cloud-compute/src/main/java/com/google/cloud/compute/v1/
H A DInstancesClient.java49 * // - It may require correct/in-range values for request initialization.
67 * <li>A "flattened" method. With this type of method, the fields of the request type have been
70 * <li>A "request object" method. This type of method only takes one parameter, a request object,
71 * which must be constructed before the call. Not every API method will have a request object
91 * // - It may require correct/in-range values for request initialization.
106 * // - It may require correct/in-range values for request initialization.
173 * // - It may require correct/in-range values for request initialization.
189 * @param project Project ID for this request.
190 * @param zone The name of the zone for this request.
191 * @param instance The instance name for this request.
[all …]
H A DFirewallPoliciesClient.java48 * // - It may require correct/in-range values for request initialization.
65 * <li>A "flattened" method. With this type of method, the fields of the request type have been
68 * <li>A "request object" method. This type of method only takes one parameter, a request object,
69 * which must be constructed before the call. Not every API method will have a request object
89 * // - It may require correct/in-range values for request initialization.
105 * // - It may require correct/in-range values for request initialization.
175 * // - It may require correct/in-range values for request initialization.
190 * @param firewallPolicyAssociationResource The body resource for this request
195 AddAssociationFirewallPolicyRequest request = in addAssociationAsync() local
200 return addAssociationAsync(request); in addAssociationAsync()
[all …]
/aosp_15_r20/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/
DTransactionManager.java51 import com.android.server.healthconnect.storage.request.AggregateTableRequest;
52 import com.android.server.healthconnect.storage.request.DeleteTableRequest;
53 import com.android.server.healthconnect.storage.request.DeleteTransactionRequest;
54 import com.android.server.healthconnect.storage.request.ReadTableRequest;
55 import com.android.server.healthconnect.storage.request.ReadTransactionRequest;
56 import com.android.server.healthconnect.storage.request.UpsertTableRequest;
57 import com.android.server.healthconnect.storage.request.UpsertTransactionRequest;
74 * A class to handle all the DB transaction request from the clients. {@link TransactionManager}
104 * Inserts all the {@link RecordInternal} in {@code request} into the HealthConnect database.
106 * @param request an insert request.
[all …]
/aosp_15_r20/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/proto/google/cloud/compute/v1/
H A Dcompute.proto44 // A request message for InstanceGroupManagers.AbandonInstances. See the method description for det…
49 // The body resource for this request
52 // Project ID for this request.
58request ID to identify requests. Specify a unique request ID so that if you must retry your reques…
69 // A request message for RegionInstanceGroupManagers.AbandonInstances. See the method description f…
74 // Project ID for this request.
80 // Name of the region scoping this request.
86 // The body resource for this request
89request ID to identify requests. Specify a unique request ID so that if you must retry your reques…
130 …You must specify this field as part of the HTTP request URL. It is not settable as a field in the
[all …]
/aosp_15_r20/external/googleapis/google/cloud/video/livestream/v1/
H A Dservice.proto114 // only when the StartChannel request is received by the server.
128 // when the StopChannel request is received by the server.
292 // Request message for "LivestreamService.CreateAsset".
311 // A request ID to identify requests. Specify a unique request ID
312 // so that if you must retry your request, the server will know to ignore
313 // the request if it has already been completed. The server will guarantee
314 // that for at least 60 minutes since the first request.
316 // For example, consider a situation where you make an initial request and the
317 // request times out. If you make the request again with the same request ID,
318 // the server can check if original operation with the same request ID was
[all …]
/aosp_15_r20/external/googleapis/google/cloud/visionai/v1/
H A Dstreams_service.proto368 // Optional. An optional request ID to identify requests. Specify a unique
369 // request ID so that if you must retry your request, the server will know to
370 // ignore the request if it has already been completed. The server will
371 // guarantee that for at least 60 minutes since the first request.
373 // For example, consider a situation where you make an initial request and the
374 // request times out. If you make the request again with the same request ID,
375 // the server can check if original operation with the same request ID was
376 // received, and if so, will ignore the second request. This prevents clients
379 // The request ID must be a valid UUID with the exception that zero UUID is
389 // the full request. A field will be overwritten if it is in the mask. If the
[all …]
/aosp_15_r20/packages/modules/AppSearch/service/java/com/android/server/appsearch/
DAppSearchManagerService.java424 @NonNull SetSchemaAidlRequest request, in setSchema()
426 Objects.requireNonNull(request); in setSchema()
428 checkUnsupportedEmbeddingUse(request.getSchemas()); in setSchema()
433 request.getCallerAttributionSource(), request.getUserHandle(), callback); in setSchema()
434 String callingPackageName = request.getCallerAttributionSource().getPackageName(); in setSchema()
438 if (checkCallDenied(callingPackageName, request.getDatabaseName(), in setSchema()
440 request.getBinderCallStartTimeMillis(), totalLatencyStartTimeMillis, in setSchema()
455 callingPackageName, request.getDatabaseName()); in setSchema()
463 request.getDatabaseName(), in setSchema()
464 request.getSchemas(), in setSchema()
[all …]
/aosp_15_r20/external/googleapis/google/cloud/compute/v1/
H A Dcompute.proto47 …l not be returned as part of the configuration when queried with a REST API GET request. @InputOnly
61 // A request message for InstanceGroupManagers.AbandonInstances. See the method description for det…
66 // The body resource for this request
69 // Project ID for this request.
75request ID to identify requests. Specify a unique request ID so that if you must retry your reques…
86 // A request message for RegionInstanceGroupManagers.AbandonInstances. See the method description f…
91 // Project ID for this request.
97 // Name of the region scoping this request.
103 // The body resource for this request
106request ID to identify requests. Specify a unique request ID so that if you must retry your reques…
[all …]
/aosp_15_r20/external/googleapis/google/cloud/visionai/v1alpha1/
H A Dstreams_service.proto347 // Optional. An optional request ID to identify requests. Specify a unique request ID
348 // so that if you must retry your request, the server will know to ignore
349 // the request if it has already been completed. The server will guarantee
350 // that for at least 60 minutes since the first request.
352 // For example, consider a situation where you make an initial request and the
353 // request times out. If you make the request again with the same request ID,
354 // the server can check if original operation with the same request ID was
355 // received, and if so, will ignore the second request. This prevents clients
358 // The request ID must be a valid UUID with the exception that zero UUID is
368 // the full request. A field will be overwritten if it is in the mask. If the
[all …]
/aosp_15_r20/external/google-cloud-java/java-analytics-admin/google-analytics-admin/src/main/java/com/google/analytics/admin/v1alpha/
H A DAnalyticsAdminServiceClient.java48 * // - It may require correct/in-range values for request initialization.
66 * <li>A "flattened" method. With this type of method, the fields of the request type have been
69 * <li>A "request object" method. This type of method only takes one parameter, a request object,
70 * which must be constructed before the call. Not every API method will have a request object
90 * // - It may require correct/in-range values for request initialization.
106 * // - It may require correct/in-range values for request initialization.
121 * // - It may require correct/in-range values for request initialization.
192 * // - It may require correct/in-range values for request initialization.
207 GetAccountRequest request = in getAccount() local
209 return getAccount(request); in getAccount()
[all …]
/aosp_15_r20/external/e2fsprogs/debugfs/
H A Ddebug_cmds.ct7 request do_show_debugfs_params, "Show debugfs parameters",
10 request do_open_filesys, "Open a filesystem",
13 request do_close_filesys, "Close the filesystem",
16 request do_freefrag, "Report free space fragmentation",
19 request do_features, "Set/print superblock features",
22 request do_dirty_filesys, "Mark the filesystem as dirty",
25 request do_init_filesys, "Initialize a filesystem (DESTROYS DATA)",
28 request do_show_super_stats, "Show superblock statistics",
31 request do_ncheck, "Do inode->name translation",
34 request do_icheck, "Do block->inode translation",
[all …]

12345678910>>...1392