HomeSort by relevance Sort by last modified time
    Searched refs:SendRequest (Results 1 - 25 of 43) sorted by null

1 2

  /bionic/libc/bionic/
bionic_netlink.h 43 bool SendRequest(int type);
bionic_netlink.cpp 56 bool NetlinkConnection::SendRequest(int type) {
ifaddrs.cpp 242 bool okay = nc.SendRequest(RTM_GETLINK) && nc.ReadResponses(__getifaddrs_callback, out) &&
243 nc.SendRequest(RTM_GETADDR) && nc.ReadResponses(__getifaddrs_callback, out);
net_if.cpp 122 bool okay = nc.SendRequest(RTM_GETLINK) && nc.ReadResponses(__if_nameindex_callback, &list);
  /packages/apps/Messaging/src/android/support/v7/mms/
SendRequest.java 40 class SendRequest extends MmsRequest {
47 SendRequest(final String locationUrl, final Uri pduUri, final PendingIntent sentIntent) {
149 public static final Parcelable.Creator<SendRequest> CREATOR
150 = new Parcelable.Creator<SendRequest>() {
151 public SendRequest createFromParcel(Parcel in) {
152 return new SendRequest(in);
155 public SendRequest[] newArray(int size) {
156 return new SendRequest[size];
160 private SendRequest(Parcel in) {
MmsManager.java 144 MmsService.startRequest(context, new SendRequest(locationUrl, contentUri, sentIntent));
  /external/google-breakpad/src/common/linux/
http_upload.h 61 static bool SendRequest(const string &url,
google_crashdump_uploader_test.cc 50 MOCK_METHOD5(SendRequest,
90 SendRequest("http://foo.com",_,_,_,_)).Times(1).WillOnce(Return(true));
110 EXPECT_CALL(m, SendRequest(_,_,_,_,_)).Times(0);
libcurl_wrapper.h 52 virtual bool SendRequest(const string& url,
google_crashdump_uploader.cc 196 return http_layer_->SendRequest(crash_server_,
libcurl_wrapper.cc 111 bool LibcurlWrapper::SendRequest(const string& url,
  /system/tpm/tpm_manager/client/
tpm_nvram_binder_proxy.cc 68 helper.SendRequest(request);
77 helper.SendRequest(request);
86 helper.SendRequest(request);
95 helper.SendRequest(request);
104 helper.SendRequest(request);
113 helper.SendRequest(request);
122 helper.SendRequest(request);
tpm_ownership_binder_proxy.cc 71 helper.SendRequest(request);
82 helper.SendRequest(request);
93 helper.SendRequest(request);
binder_proxy_helper.h 45 void SendRequest(const RequestProtobufType& request) {
  /system/nvram/hal/
testing_nvram_implementation.cpp 51 bool SendRequest(const nvram::Request& request, nvram::Response* response);
72 if (!SendRequest(request, response)) {
94 bool TestingNvramImplementation::SendRequest(const nvram::Request& request,
  /external/google-breakpad/src/common/windows/
http_upload.h 68 static bool SendRequest(const wstring &url,
  /external/google-breakpad/src/client/windows/sender/
crash_report_sender.cc 71 bool result = HTTPUpload::SendRequest(
  /external/google-breakpad/src/tools/linux/symupload/
minidump_upload.cc 67 bool success = HTTPUpload::SendRequest(options->uploadURLStr,
sym_upload.cc 144 bool success = HTTPUpload::SendRequest(options->uploadURLStr,
  /external/libbrillo/brillo/http/
http_utils.cc 122 RequestID SendRequest(const std::string& method,
147 RequestID SendRequest(const std::string& method,
156 return SendRequest(method,
172 return SendRequest(method,
207 return SendRequest(request_type::kPost,
225 return SendRequest(request_type::kPost,
370 return SendRequest(request_type::kPatch, url, data.c_str(), data.size(),
http_utils.h 80 BRILLO_EXPORT RequestID SendRequest(
95 BRILLO_EXPORT RequestID SendRequest(
  /external/webrtc/webrtc/p2p/base/
turnport.cc 255 SendRequest(&bye, 0);
313 SendRequest(new TurnAllocateRequest(this), 0);
408 SendRequest(new TurnAllocateRequest(this), 0);
758 SendRequest(new TurnAllocateRequest(this), 0);
875 SendRequest(new TurnRefreshRequest(this), delay);
880 void TurnPort::SendRequest(StunRequest* req, int delay) {
    [all...]
  /external/google-breakpad/src/tools/windows/symupload/
symupload.cc 235 if (!HTTPUpload::SendRequest(argv[currentarg], parameters,
  /system/core/adb/
file_sync_client.cpp 281 bool SendRequest(int id, const char* path_and_mode) {
284 Error("SendRequest failed: path too long: %zu", path_length);
306 return SendRequest(ID_STAT_V2, path_and_mode);
311 return SendRequest(ID_LSTAT_V2, path_and_mode);
313 return SendRequest(ID_LSTAT_V1, path_and_mode);
421 if (!SendRequest(ID_SEND, path_and_mode)) {
587 return SendRequest(ID_QUIT, ""); // TODO: add a SendResponse?
616 if (!sc.SendRequest(ID_LIST, path)) return false;
735 if (!sc.SendRequest(ID_RECV, rpath)) return false;
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
client_channel.cpp 89 Status<void> SendRequest(const BorrowedHandle& socket_fd,
194 auto status = SendRequest(BorrowedHandle{channel_handle_.value()}, state,

Completed in 767 milliseconds

1 2