Home
last modified time | relevance | path

Searched refs:err_code (Results 1 – 19 of 19) sorted by relevance

/external/tcpdump/
Dprint-pptp.c108 uint8_t err_code; member
125 uint8_t err_code; member
136 uint8_t err_code; member
159 uint8_t err_code; member
183 uint8_t err_code; member
206 uint8_t err_code; member
336 const uint8_t *err_code) in pptp_err_code_print() argument
338 ND_PRINT((ndo, " ERR_CODE(%u", *err_code)); in pptp_err_code_print()
340 ND_PRINT((ndo, ":%s", tok2str(pptp_errcode_str, "?", *err_code))); in pptp_err_code_print()
555 ND_TCHECK(ptr->err_code); in pptp_sccrp_print()
[all …]
/external/webrtc/webrtc/audio/
Daudio_state.cc58 void AudioState::CallbackOnError(int channel_id, int err_code) { in CallbackOnError() argument
63 LOG(LS_INFO) << "VoiceEngine error " << err_code << " reported on channel " in CallbackOnError()
65 if (err_code == VE_TYPING_NOISE_WARNING) { in CallbackOnError()
68 } else if (err_code == VE_TYPING_NOISE_OFF_WARNING) { in CallbackOnError()
Daudio_state.h39 void CallbackOnError(int channel_id, int err_code) override;
/external/google-breakpad/src/common/linux/
Dhttp_upload.cc112 CURLcode err_code = CURLE_OK; in SendRequest() local
165 err_code = (*curl_easy_perform)(curl); in SendRequest()
174 if (err_code != CURLE_OK) in SendRequest()
177 (*curl_easy_strerror)(err_code)); in SendRequest()
180 *error_description = (*curl_easy_strerror)(err_code); in SendRequest()
196 return err_code == CURLE_OK; in SendRequest()
Dlibcurl_wrapper.cc138 CURLcode err_code = CURLE_OK; in SendRequest() local
139 err_code = (*easy_perform_)(curl_); in SendRequest()
148 if (err_code != CURLE_OK) in SendRequest()
151 (*easy_strerror_)(err_code)); in SendRequest()
162 return err_code == CURLE_OK; in SendRequest()
/external/webrtc/webrtc/p2p/base/
Dstunserver.cc65 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); in SendErrorResponse() local
66 err_code->SetCode(error_code); in SendErrorResponse()
67 err_code->SetReason(error_desc); in SendErrorResponse()
68 err_msg.AddAttribute(err_code); in SendErrorResponse()
Drelayserver.cc72 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); in SendStunError() local
73 err_code->SetClass(error_code / 100); in SendStunError()
74 err_code->SetNumber(error_code % 100); in SendStunError()
75 err_code->SetReason(error_desc); in SendStunError()
76 err_msg.AddAttribute(err_code); in SendStunError()
/external/webrtc/webrtc/voice_engine/test/cmd_test/
Dvoe_cmd_test.cc74 virtual void CallbackOnError(int channel, int err_code);
77 void MyObserver::CallbackOnError(int channel, int err_code) { in CallbackOnError() argument
79 if (err_code == VE_TYPING_NOISE_WARNING) { in CallbackOnError()
81 } else if (err_code == VE_TYPING_NOISE_OFF_WARNING) { in CallbackOnError()
83 } else if (err_code == VE_RECEIVE_PACKET_TIMEOUT) { in CallbackOnError()
85 } else if (err_code == VE_PACKET_RECEIPT_RESTARTED) { in CallbackOnError()
87 } else if (err_code == VE_RUNTIME_PLAY_WARNING) { in CallbackOnError()
89 } else if (err_code == VE_RUNTIME_REC_WARNING) { in CallbackOnError()
91 } else if (err_code == VE_SATURATION_WARNING) { in CallbackOnError()
93 } else if (err_code == VE_RUNTIME_PLAY_ERROR) { in CallbackOnError()
[all …]
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c43 int err_code; in regex_helper() local
46 err_code = regcomp(&regex, regex_str, REG_EXTENDED); in regex_helper()
47 if (err_code) { in regex_helper()
48 regerror(err_code, &regex, err_buf, REGEX_ERR_BUF_SIZE); in regex_helper()
53 err_code = regexec(&regex, search_str, num_matches, matches, 0); in regex_helper()
59 if (err_code) { in regex_helper()
60 regerror(err_code, &regex, err_buf, REGEX_ERR_BUF_SIZE); in regex_helper()
/external/pdfium/fpdfsdk/src/
Dfpdfview.cpp277 void ProcessParseError(FX_DWORD err_code) { in ProcessParseError() argument
279 switch (err_code) { in ProcessParseError()
281 err_code = FPDF_ERR_FILE; in ProcessParseError()
284 err_code = FPDF_ERR_FORMAT; in ProcessParseError()
287 err_code = FPDF_ERR_PASSWORD; in ProcessParseError()
290 err_code = FPDF_ERR_SECURITY; in ProcessParseError()
293 SetLastError(err_code); in ProcessParseError()
313 FX_DWORD err_code = pParser->StartParse(pFileAccess); in FPDF_LoadDocument() local
314 if (err_code) { in FPDF_LoadDocument()
316 ProcessParseError(err_code); in FPDF_LoadDocument()
[all …]
Dfpdf_dataavail.cpp130 FX_DWORD err_code = pParser->StartAsynParse( in FPDFAvail_GetDocument() local
132 if (err_code) { in FPDFAvail_GetDocument()
134 ProcessParseError(err_code); in FPDFAvail_GetDocument()
Dfpdf_ext.cpp135 void CheckUnSupportError(CPDF_Document* pDoc, FX_DWORD err_code) { in CheckUnSupportError() argument
137 if (err_code == FPDF_ERR_SECURITY) { in CheckUnSupportError()
/external/libunwind/src/mi/
Dstrerror.c31 unw_strerror (int err_code) in unw_strerror() argument
34 unw_error_t error = (unw_error_t)-err_code; in unw_strerror()
/external/opencv/cxcore/src/
Dcxerror.cpp59 int err_code; member
79 context->err_code = CV_StsOk; in icvCreateContext()
324 return icvGetContext()->err_code; in cvGetErrStatus()
329 icvGetContext()->err_code = code; in cvSetErrStatus()
346 context->err_code = code; in cvError()
/external/pdfium/fpdfsdk/include/
Dfsdk_define.h136 void CheckUnSupportError(CPDF_Document* pDoc, FX_DWORD err_code);
138 void ProcessParseError(FX_DWORD err_code);
/external/kernel-headers/original/uapi/linux/
Dbtrfs.h535 static inline char *btrfs_err_str(enum btrfs_err_code err_code) in btrfs_err_str() argument
537 switch (err_code) { in btrfs_err_str()
/external/webrtc/talk/media/webrtc/
Dfakewebrtcvoiceengine.h280 void TriggerCallbackOnError(int channel_num, int err_code) { in TriggerCallbackOnError() argument
282 observer_->CallbackOnError(channel_num, err_code); in TriggerCallbackOnError()
/external/sqlite/dist/
Dsqlite3.c24693 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
24695 db->errCode = err_code;
24720 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
24722 db->errCode = err_code;
24724 sqlite3Error(db, err_code);
/external/sqlite/dist/orig/
Dsqlite3.c24693 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
24695 db->errCode = err_code;
24720 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
24722 db->errCode = err_code;
24724 sqlite3Error(db, err_code);