HomeSort by relevance Sort by last modified time
    Searched full:request_type (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /bionic/libc/kernel/uapi/linux/
dm-log-userspace.h 41 #define DM_ULOG_REQUEST_TYPE(request_type) (DM_ULOG_REQUEST_MASK & (request_type))
50 __u32 request_type; member in struct:dm_ulog_request
  /external/libbrillo/brillo/http/
http_request_unittest.cc 69 Request request{"http://www.foo.bar", request_type::kPost, transport_};
75 EXPECT_EQ(request_type::kPost, request.GetRequestMethod());
77 Request request2{"http://www.foo.bar/baz", request_type::kGet, transport_};
79 EXPECT_EQ(request_type::kGet, request2.GetRequestMethod());
83 Request request{"http://www.foo.bar", request_type::kPost, transport_};
89 Request request{"http://www.foo.bar", request_type::kPost, transport_};
95 Request request{"http://www.foo.bar", request_type::kPost, transport_};
101 Request request{"http://www.foo.bar", request_type::kPost, transport_};
107 Request request{"http://www.foo.bar", request_type::kPost, transport_};
124 request_type::kPost
    [all...]
http_utils_unittest.cc 45 kEchoUrl, request_type::kPost, base::Bind(EchoDataHandler));
50 http::SendRequestAndBlock(request_type::kPost,
67 kEchoUrl, request_type::kPost, base::Bind(EchoDataHandler));
82 http::SendRequest(request_type::kPost,
102 http::SendRequestAndBlock(request_type::kPost,
112 EXPECT_EQ(request_type::kPost, response->ExtractDataAsString());
119 auto response = http::SendRequestAndBlock(request_type::kGet,
129 EXPECT_EQ(request_type::kGet, response->ExtractDataAsString());
136 auto response = http::SendRequestAndBlock(request_type::kPut,
146 EXPECT_EQ(request_type::kPut, response->ExtractDataAsString())
    [all...]
http_request.cc 19 // request_type
20 const char request_type::kOptions[] = "OPTIONS";
21 const char request_type::kGet[] = "GET";
22 const char request_type::kHead[] = "HEAD";
23 const char request_type::kPost[] = "POST";
24 const char request_type::kPut[] = "PUT";
25 const char request_type::kPatch[] = "PATCH";
26 const char request_type::kDelete[] = "DELETE";
27 const char request_type::kTrace[] = "TRACE";
28 const char request_type::kConnect[] = "CONNECT"
    [all...]
http_transport_curl_unittest.cc 70 request_type::kGet,
88 "http://foo.bar/head", request_type::kHead, {}, "", "", nullptr);
102 "http://foo.bar/put", request_type::kPut, {}, "", "", nullptr);
118 "http://www.foo.bar/post", request_type::kPost, {}, "", "", nullptr);
135 EasySetOptStr(handle_, CURLOPT_CUSTOMREQUEST, request_type::kPatch))
138 "http://www.foo.bar/patch", request_type::kPatch, {}, "", "", nullptr);
156 "http://foo.bar/get", request_type::kGet, {}, "", "", &error);
203 "http://foo.bar/get", request_type::kGet, {}, "", "", nullptr);
304 "http://foo.bar/get", request_type::kGet, {}, "", "", nullptr);
http_utils.cc 29 request_type::kGet, url, headers, transport, error);
37 return SendRequestWithNoData(request_type::kGet,
49 request_type::kHead, url, {}, transport, error);
56 return SendRequestWithNoData(request_type::kHead,
190 return SendRequestAndBlock(request_type::kPost,
207 return SendRequest(request_type::kPost,
225 return SendRequest(request_type::kPost,
258 Request request(url, request_type::kPost, transport);
288 Request request(url, request_type::kPost, transport);
348 return SendRequestAndBlock(request_type::kPatch
    [all...]
http_connection_curl.cc 97 if (method_ != request_type::kGet) {
105 if (method_ == request_type::kPut) {
141 if (method_ != request_type::kHead) {
http_connection_fake.cc 110 if (request_.GetMethod() != request_type::kHead) {
http_transport_curl.cc 171 if (method == request_type::kGet) {
173 } else if (method == request_type::kHead) {
175 } else if (method == request_type::kPut) {
184 if (code == CURLE_OK && method != request_type::kPost) {
  /test/framework/harnesses/host_controller/tfc/
command_task.py 31 "request_type",
  /external/libcups/cups/
snmp-private.h 88 cups_asn1_t request_type; /* Request type */ member in struct:cups_snmp_s
132 cups_asn1_t request_type,
  /device/google/cuttlefish_common/host/libs/usbip/
vhci_instrument.cpp 174 ControlMsgType request_type; local
179 control_read_end_->Read(&request_type, sizeof(request_type));
181 want_attach = request_type == kControlAttach;
  /external/libusb/libusb/os/
haiku_usb_raw.h 153 uint8 request_type; member in struct:__anon25886::__anon25899
windows_winusb.h 152 #define LIBUSB_REQ_RECIPIENT(request_type) ((request_type) & 0x1F)
153 #define LIBUSB_REQ_TYPE(request_type) ((request_type) & (0x03 << 5))
154 #define LIBUSB_REQ_IN(request_type) ((request_type) & LIBUSB_ENDPOINT_IN)
155 #define LIBUSB_REQ_OUT(request_type) (!LIBUSB_REQ_IN(request_type))
647 UCHAR request_type; member in struct:__anon25920
  /external/kernel-headers/original/uapi/linux/
dm-log-userspace.h 369 * (DM_ULOG_REQUEST_MASK & request_type) to get the request type
376 * We are reserving 8 bits of the 32-bit 'request_type' field for the
381 * request type from the 'request_type' field to maintain forward compatibility.
384 #define DM_ULOG_REQUEST_TYPE(request_type) \
385 (DM_ULOG_REQUEST_MASK & (request_type))
426 __u32 request_type; /* DM_ULOG_* defined above */ member in struct:dm_ulog_request
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
dm-log-userspace.h 360 * (DM_ULOG_REQUEST_MASK & request_type) to get the request type
367 * We are reserving 8 bits of the 32-bit 'request_type' field for the
372 * request type from the 'request_type' field to maintain forward compatibility.
375 #define DM_ULOG_REQUEST_TYPE(request_type) \
376 (DM_ULOG_REQUEST_MASK & (request_type))
410 uint32_t request_type; /* DM_ULOG_* defined above */ member in struct:dm_ulog_request
  /external/tensorflow/tensorflow/contrib/mpi_collectives/
mpi_message.proto 36 RequestType request_type = 2;
  /external/wpa_supplicant_8/src/wps/
wps_attr_parse.h 51 const u8 *request_type; /* 1 octet */ member in struct:wps_parse_attr
wps_i.h 82 * request_type - Request Type attribute from (Re)AssocReq
84 u8 request_type; member in struct:wps_data
  /system/tpm/attestation/server/
attestation_service.h 212 // Sends a |request_type| |request| to the Google Attestation CA and waits for
214 bool SendACARequestAndBlock(ACARequestType request_type,
259 // Creates a Google Attestation CA URL for the given |request_type|.
260 std::string GetACAURL(ACARequestType request_type) const;
  /developers/build/prebuilts/gradle/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
MainActivity.java 70 private enum REQUEST_TYPE {ADD}
71 private REQUEST_TYPE mRequestType;
  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
MainActivity.java 70 private enum REQUEST_TYPE {ADD}
71 private REQUEST_TYPE mRequestType;
  /development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
MainActivity.java 70 private enum REQUEST_TYPE {ADD}
71 private REQUEST_TYPE mRequestType;
  /tools/test/connectivity/acts/tests/google/wifi/rtt/functional/
RangeApSupporting11McTest.py 184 p[RttParam.request_type] = RttType.TYPE_TWO_SIDED
186 p[RttParam.request_type] = RttType.TYPE_ONE_SIDED
  /tools/test/connectivity/acts/tests/google/wifi/
WifiRttManagerTest.py 69 RttParam.request_type: RttType.TYPE_TWO_SIDED,
400 p[RttParam.request_type] = RttType.TYPE_TWO_SIDED
402 p[RttParam.request_type] = RttType.TYPE_ONE_SIDED
414 RttParam.request_type: 3
417 RttParam.request_type: 1,
506 p[RttParam.request_type] = RttType.TYPE_TWO_SIDED
525 p[RttParam.request_type] = RttType.TYPE_TWO_SIDED

Completed in 326 milliseconds

1 2 3 4