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

1 2

  /system/update_engine/
omaha_request_action_unittest.cc 365 *out_post_data = fetcher->post_data();
400 *out_post_data = fetcher->post_data();
1058 brillo::Blob post_data; local
1154 brillo::Blob post_data; local
1191 brillo::Blob post_data; local
1208 brillo::Blob post_data; local
1259 brillo::Blob post_data; local
1299 brillo::Blob post_data; local
1372 brillo::Blob post_data; local
1419 brillo::Blob post_data; local
1451 brillo::Blob post_data; local
1488 brillo::Blob post_data; local
1515 brillo::Blob post_data; local
1548 brillo::Blob post_data; local
1649 brillo::Blob post_data; local
1784 brillo::Blob post_data; local
1832 brillo::Blob post_data; local
1877 brillo::Blob post_data; local
1899 brillo::Blob post_data; local
    [all...]
  /system/webservd/libwebserv/
request_fake.h 45 void SetFormDataPost(std::multimap<std::string, std::string> post_data) {
46 post_data_ = std::move(post_data);
request.cc 61 auto post_data = GetFormDataPost(); local
62 data.insert(data.end(), post_data.begin(), post_data.end());
  /external/libmicrohttpd/src/testzzuf/
test_post.c 42 #define POST_DATA "name=daniel&project=curl"
175 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
176 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
227 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
228 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
297 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
298 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
  /system/connectivity/shill/cellular/
mobile_operator_info.cc 200 << ", post_data: " << olp.post_data << ") ";
252 const string& post_data) {
256 << ", " << post_data << ")"; local
257 impl_->UpdateOnlinePortal(url, method, post_data);
cellular_capability_universal_cdma.cc 246 string post_data = olp_list[0].post_data; local
247 base::ReplaceSubstringsAfterOffset(&post_data, 0, "${esn}",
250 &post_data, 0, "${mdn}",
252 base::ReplaceSubstringsAfterOffset(&post_data, 0,
254 base::ReplaceSubstringsAfterOffset(&post_data, 0, "${oem}", "GOG2");
255 cellular()->service()->SetOLP(olp_list[0].url, olp_list[0].method, post_data);
mobile_operator_info_impl.cc 354 const string& post_data) {
358 user_olp_.post_data == post_data) {
365 user_olp_.post_data = post_data;
394 user_olp_.post_data.clear();
926 raw_olp.post_data()});
934 olp.post_data != user_olp_.post_data);
cellular_capability_universal.cc 777 string post_data = olp_list[0].post_data; local
779 &post_data, 0, "${iccid}", cellular()->sim_identifier());
781 &post_data, 0, "${imei}", cellular()->imei());
783 &post_data, 0, "${imsi}", cellular()->imsi());
785 &post_data, 0, "${mdn}", GetMdnForOLP(cellular()->home_provider_info()));
787 &post_data, 0, "${min}", cellular()->min());
788 cellular()->service()->SetOLP(olp_list[0].url, olp_list[0].method, post_data);
    [all...]
cellular_service.cc 426 const string& post_data) {
430 olp[kPaymentPortalPostData] = post_data;
mobile_operator_info.h 139 std::string post_data; member in struct:shill::MobileOperatorInfo::OnlinePortal
217 const std::string& post_data);
cellular_service.h 80 const std::string& post_data);
  /external/libmicrohttpd/src/microhttpd/
postprocessor.c 337 * @param post_data upload data
338 * @param post_data_len number of bytes in @a post_data
343 const char *post_data,
370 (post_data[equals + poff] != '='))
377 memcpy (&buf[pp->buffer_pos], &post_data[poff], equals);
399 (post_data[amper + poff] != '&') &&
400 (post_data[amper + poff] != '\n') &&
401 (post_data[amper + poff] != '\r'))
404 ((post_data[amper + poff] == '&') ||
405 (post_data[amper + poff] == '\n') |
    [all...]
  /external/libmicrohttpd/src/testcurl/
test_post_loop.c 47 #define POST_DATA "<?xml version='1.0' ?>\n<xml>\n<data-id>1</data-id>\n</xml>\n"
101 if (strlen (POST_DATA) != *upload_data_size)
137 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
138 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
201 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
202 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
266 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
267 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
349 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
350 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
    [all...]
test_post.c 53 #define POST_DATA "name=daniel&project=curl"
183 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
184 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
237 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
238 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
292 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
293 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
356 curl_easy_setopt (c, CURLOPT_POSTFIELDS, POST_DATA);
357 curl_easy_setopt (c, CURLOPT_POSTFIELDSIZE, strlen (POST_DATA));
  /external/skia/tools/lua/
trigger_ct_lua 20 POST_DATA = ('username=%s'
33 body = POST_DATA % (user, password, description, script_contents, skp_repo)
  /system/connectivity/shill/mobile_operator_db/test_protos/
data_test.h 43 // post_data: "random_data"
52 // post_data: "post_data"
61 // post_data: "post_data"
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftmac.c 594 Handle post_data; local
607 post_data = Get1Resource( TTAG_POST, res_id++ );
608 if ( post_data == NULL )
611 code = (*post_data)[0];
621 total_size += (FT_ULong)GetHandleSize( post_data ) - 2;
646 post_data = Get1Resource( TTAG_POST, res_id++ );
647 if ( post_data == NULL )
650 post_size = (FT_ULong)GetHandleSize( post_data ) - 2;
651 code = (*post_data)[0];
683 ft_memcpy( p, *post_data + 2, post_size )
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftmac.c 594 Handle post_data; local
607 post_data = Get1Resource( TTAG_POST, res_id++ );
608 if ( post_data == NULL )
611 code = (*post_data)[0];
621 total_size += (FT_ULong)GetHandleSize( post_data ) - 2;
646 post_data = Get1Resource( TTAG_POST, res_id++ );
647 if ( post_data == NULL )
650 post_size = (FT_ULong)GetHandleSize( post_data ) - 2;
651 code = (*post_data)[0];
683 ft_memcpy( p, *post_data + 2, post_size )
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/mac/
ftmac.c 974 Handle post_data; local
987 post_data = Get1Resource( TTAG_POST, res_id++ );
988 if ( post_data == NULL )
991 code = (*post_data)[0];
1001 total_size += GetHandleSize( post_data ) - 2;
1026 post_data = Get1Resource( TTAG_POST, res_id++ );
1027 if ( post_data == NULL )
1030 post_size = (FT_ULong)GetHandleSize( post_data ) - 2;
1031 code = (*post_data)[0];
1063 ft_memcpy( p, *post_data + 2, post_size )
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 849 spdylay_data_provider post_data; local
890 post_data.source.ptr = proxy;
891 post_data.read_callback = &spdy_cb_data_source_read;
892 ret = spdylay_submit_request(connection->session, 0, nv, &post_data, proxy);
  /system/connectivity/shill/mobile_operator_db/
mobile_operator_db.proto 73 optional string post_data = 4;
  /system/update_engine/common/
mock_http_fetcher.h 106 const brillo::Blob& post_data() const { function in class:chromeos_update_engine::MockHttpFetcher
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 72 private static final String POST_DATA = "_.-^ Client's Data ^-._";
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
WorldWideWeb_suite.py 19 'post_data' : 'POST',
30 Keyword argument post_data: Form posting data
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
WorldWideWeb_suite.py 19 'post_data' : 'POST',
30 Keyword argument post_data: Form posting data

Completed in 1198 milliseconds

1 2