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

1 2 3

  /external/chromium/net/ftp/
ftp_ctrl_response_buffer.cc 17 FtpCtrlResponse::FtpCtrlResponse() : status_code(kInvalidStatusCode) {}
34 if (!line.is_complete || line.status_code != response_buf_.status_code) {
42 DCHECK_EQ(line.status_code, response_buf_.status_code);
57 response_buf_.status_code = line.status_code;
85 status_code(FtpCtrlResponse::kInvalidStatusCode) {
94 if (base::StringToInt(line.begin(), line.begin() + 3, &result.status_code))
95 result.has_status_code = (100 <= result.status_code &
    [all...]
ftp_ctrl_response_buffer.h 24 int status_code; // Three-digit status code. member in struct:net::FtpCtrlResponse
61 int status_code; member in struct:net::FtpCtrlResponseBuffer::ParsedLine
ftp_network_transaction.cc 707 switch (GetErrorClass(response.status_code)) {
715 return Stop(GetNetErrorCodeForFtpResponseCode(response.status_code));
718 return Stop(GetNetErrorCodeForFtpResponseCode(response.status_code));
739 switch (GetErrorClass(response.status_code)) {
744 return Stop(GetNetErrorCodeForFtpResponseCode(response.status_code));
746 return Stop(GetNetErrorCodeForFtpResponseCode(response.status_code));
749 return Stop(GetNetErrorCodeForFtpResponseCode(response.status_code));
766 switch (GetErrorClass(response.status_code)) {
798 return Stop(GetNetErrorCodeForFtpResponseCode(response.status_code));
818 switch (GetErrorClass(response.status_code)) {
    [all...]
ftp_ctrl_response_buffer_unittest.cc 31 EXPECT_EQ(200, response.status_code);
50 EXPECT_EQ(200, response.status_code);
67 EXPECT_EQ(230, response.status_code);
92 EXPECT_EQ(230, response.status_code);
112 EXPECT_EQ(230, response.status_code);
132 EXPECT_EQ(230, response.status_code);
154 EXPECT_EQ(230, response.status_code);
  /external/wpa_supplicant_8/src/common/
gas.h 14 struct wpabuf * gas_build_initial_resp(u8 dialog_token, u16 status_code,
17 struct wpabuf * gas_anqp_build_initial_resp(u8 dialog_token, u16 status_code,
20 u16 status_code,
23 struct wpabuf * gas_anqp_build_comeback_resp(u8 dialog_token, u16 status_code,
27 u16 status_code,
gas.c 48 gas_build_resp(u8 action, u8 dialog_token, u16 status_code, u8 frag_id,
60 wpabuf_put_le16(buf, status_code);
70 gas_build_initial_resp(u8 dialog_token, u16 status_code, u16 comeback_delay,
74 status_code, 0, 0, comeback_delay, size);
79 gas_build_comeback_resp(u8 dialog_token, u16 status_code, u8 frag_id, u8 more,
83 status_code, frag_id, more, comeback_delay,
128 struct wpabuf * gas_anqp_build_initial_resp(u8 dialog_token, u16 status_code,
133 buf = gas_build_initial_resp(dialog_token, status_code, comeback_delay,
147 u16 status_code,
153 buf = gas_anqp_build_initial_resp(dialog_token, status_code,
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
interworking.h 19 const struct wpabuf *resp, u16 status_code);
gas_query.h 37 const struct wpabuf *resp, u16 status_code),
gas_query.c 33 u16 status_code; member in struct:gas_query_pending
39 const struct wpabuf *resp, u16 status_code);
78 query->adv_proto, query->resp, query->status_code);
317 query->status_code = WPA_GET_LE16(pos);
320 if (query->status_code != WLAN_STATUS_SUCCESS) {
323 MAC2STR(sa), dialog_token, query->status_code);
422 const struct wpabuf *resp, u16 status_code),
  /external/chromium/net/url_request/
url_request_job_tracker.cc 50 int status_code) {
52 OnJobRedirect(job, location, status_code));
url_request_job_tracker.h 48 // new URL. The redirect type is given in status_code
50 int status_code) = 0;
82 int status_code);
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceResponseSoup.cpp 42 soupMessage->status_code = httpStatusCode();
62 m_httpStatusCode = soupMessage->status_code;
ResourceHandleSoup.cpp 258 if (statusWillBeHandledBySoup(msg->status_code)) {
272 if (!handle || statusWillBeHandledBySoup(msg->status_code))
277 if (msg->status_code == SOUP_STATUS_NOT_MODIFIED) {
326 if (statusWillBeHandledBySoup(msg->status_code))
347 if (statusWillBeHandledBySoup(msg->status_code))
430 gboolean isTransportError = d->m_soupMessage && SOUP_STATUS_IS_TRANSPORT_ERROR(soupMsg->status_code);
435 gint errorCode = isTransportError ? static_cast<gint>(soupMsg->status_code) : error->code;
445 if (d->m_soupMessage && statusWillBeHandledBySoup(d->m_soupMessage->status_code)) {
701 if (soupMessage->status_code != SOUP_STATUS_NONE)
  /external/srec/srec/ca/
utt_basi.c 126 int status_code; local
132 status_code = advance_utterance_frame(&hUtt->data);
133 return (status_code);
pat_basi.c 257 int status_code; local
266 status_code = get_data_frame(hPattern->data.prep, &hUtt->data);
283 return (status_code);
  /external/bluetooth/glib/gio/win32/
gwinhttpvfs.c 334 wchar_t *status_code; local
359 status_code = g_malloc (status_code_len);
365 status_code,
370 g_free (status_code);
375 if (status_code[0] != L'2')
406 what, status_code, status_text ? status_text : L"");
407 g_free (status_code);
413 g_free (status_code);
  /external/srec/srec/crec/
get_fram.c 172 int status_code; local
183 if ((status_code = get_utterance_frame(prep, utt)) <= 0)
184 return (status_code);
191 status_code = get_utterance_frame(prep, utt);
192 if (status_code == 0) return(status_code);
193 else if (status_code == -1) return(1);
  /external/wpa_supplicant_8/src/p2p/
p2p_sd.c 127 static struct wpabuf * p2p_build_sd_response(u8 dialog_token, u16 status_code,
135 buf = gas_anqp_build_initial_resp(dialog_token, status_code,
159 u16 status_code,
167 buf = gas_anqp_build_comeback_resp(dialog_token, status_code, frag_id,
402 u16 status_code; local
429 status_code = WPA_GET_LE16(pos);
434 "P2P: dialog_token=%u status_code=%u comeback_delay=%u",
435 dialog_token, status_code, comeback_delay);
436 if (status_code) {
439 status_code);
640 u16 status_code; local
    [all...]
  /external/chromium/chrome/browser/policy/
device_policy_cache_unittest.cc 52 ACTION_P(MockSignedSettingsHelperStorePolicy, status_code) {
53 arg1->OnStorePolicyCompleted(status_code);
56 ACTION_P2(MockSignedSettingsHelperRetrievePolicy, status_code, policy) {
57 arg0->OnRetrievePolicyCompleted(status_code, policy);
  /external/wpa_supplicant_8/src/ap/
wmm.c 135 u8 action_code, u8 dialogue_token, u8 status_code)
145 "action response - reason %d", status_code);
155 m->u.action.u.wmm_action.status_code = status_code;
ieee802_11.c 257 reply->u.auth.status_code = host_to_le16(resp);
302 u16 auth_alg, auth_transaction, status_code; local
323 status_code = le_to_host16(mgmt->u.auth.status_code);
333 "auth_transaction=%d status_code=%d wep=%d%s",
335 status_code, !!(fc & WLAN_FC_ISWEP),
828 u16 status_code, int reassoc, const u8 *ies,
850 reply->u.assoc_resp.status_code = host_to_le16(status_code);
859 if (status_code == WLAN_STATUS_SUCCESS)
1445 u16 auth_alg, auth_transaction, status_code; local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
tab_contents_drag_source.cc 211 char status_code = 'E'; local
253 status_code = 'S';
261 reinterpret_cast<guchar*>(&status_code),
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
ieee802_11_defs.h 247 le16 status_code; member in struct:ieee80211_mgmt::__anon15336::__anon15337
262 le16 status_code; member in struct:ieee80211_mgmt::__anon15336::__anon15340
303 u8 status_code; member in struct:ieee80211_mgmt::__anon15336::__anon15346::__anon15347::__anon15348
324 le16 status_code; member in struct:ieee80211_mgmt::__anon15336::__anon15346::__anon15347::__anon15351
  /external/tcpdump/
print-802_11.c 360 pbody.status_code = EXTRACT_LE_16BITS(p+offset);
369 (pbody.status_code < NUM_STATUSES
370 ? status_text[pbody.status_code]
493 pbody.status_code = EXTRACT_LE_16BITS(p + offset);
507 ? ((pbody.status_code < NUM_STATUSES)
508 ? status_text[pbody.status_code]
518 ? ((pbody.status_code < NUM_STATUSES)
519 ? status_text[pbody.status_code]
  /bionic/libc/kernel/common/linux/
msm_q6venc.h 245 unsigned int status_code; member in struct:venc_msg

Completed in 1005 milliseconds

1 2 3