Home
last modified time | relevance | path

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

/external/tcpdump/
Dprint-pptp.c115 u_int8_t err_code; member
132 u_int8_t err_code; member
143 u_int8_t err_code; member
166 u_int8_t err_code; member
190 u_int8_t err_code; member
213 u_int8_t err_code; member
337 pptp_err_code_print(const u_int8_t *err_code) in pptp_err_code_print() argument
339 printf(" ERR_CODE(%u", *err_code); in pptp_err_code_print()
341 switch (*err_code) { in pptp_err_code_print()
624 TCHECK(ptr->err_code); in pptp_sccrp_print()
[all …]
/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/pdfium/fpdfsdk/src/
Dfpdf_dataavail.cpp10 extern void ProcessParseError(FX_DWORD err_code);
120 extern void CheckUnSupportError(CPDF_Document * pDoc, FX_DWORD err_code);
128 …FX_DWORD err_code = pParser->StartAsynParse(((CFPDF_DataAvail*)avail)->m_pDataAvail->GetFileRead()… in FPDFAvail_GetDocument() local
129 if (err_code) { in FPDFAvail_GetDocument()
131 ProcessParseError(err_code); in FPDFAvail_GetDocument()
Dfpdfview.cpp161 void ProcessParseError(FX_DWORD err_code) in ProcessParseError() argument
164 switch (err_code) { in ProcessParseError()
166 err_code = FPDF_ERR_FILE; in ProcessParseError()
169 err_code = FPDF_ERR_FORMAT; in ProcessParseError()
172 err_code = FPDF_ERR_PASSWORD; in ProcessParseError()
175 err_code = FPDF_ERR_SECURITY; in ProcessParseError()
178 SetLastError(err_code); in ProcessParseError()
191 FX_DWORD err_code = pParser->StartParse((FX_LPCSTR)file_path); in FPDF_LoadDocument() local
192 if (err_code) { in FPDF_LoadDocument()
194 ProcessParseError(err_code); in FPDF_LoadDocument()
[all …]
Dfpdf_ext.cpp151 void CheckUnSupportError(CPDF_Document * pDoc, FX_DWORD err_code) in CheckUnSupportError() argument
154 if(err_code == FPDF_ERR_SECURITY) in CheckUnSupportError()
/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/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/kernel-headers/original/uapi/linux/
Dbtrfs.h510 static inline char *btrfs_err_str(enum btrfs_err_code err_code) in btrfs_err_str() argument
512 switch (err_code) { in btrfs_err_str()
/external/sqlite/dist/
Dsqlite3.c23543 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
23545 db->errCode = err_code;
23570 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
23572 db->errCode = err_code;
23574 sqlite3Error(db, err_code);
/external/sqlite/dist/orig/
Dsqlite3.c23543 SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){
23545 db->errCode = err_code;
23570 SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){
23572 db->errCode = err_code;
23574 sqlite3Error(db, err_code);