Searched refs:err_code (Results 1 - 25 of 51) sorted by relevance

123

/external/chromium_org/sandbox/win/tools/finder/
H A Dfinder_registry.cc15 LONG err_code = ::RegEnumKey(key, index, buffer, name_size); local
16 while (ERROR_SUCCESS == err_code) {
22 err_code = ::RegOpenKeyEx(key, buffer, 0, KEY_ENUMERATE_SUB_KEYS,
24 if (ERROR_SUCCESS == err_code) {
29 Output(REG_ERR, err_code, name_complete);
33 err_code = ::RegEnumKey(key, index, buffer, name_size);
36 if (ERROR_NO_MORE_ITEMS != err_code) {
38 Output(REG_ERR, err_code, print_name);
51 LONG err_code = 0; local
54 err_code
[all...]
H A Dfinder.cc28 DWORD err_code = ERROR_SUCCESS; local
30 err_code = InitNT();
31 if (ERROR_SUCCESS != err_code)
32 return err_code;
38 err_code = sandbox::CreateRestrictedToken(&token_handle_, token_type,
41 return err_code;
H A Dfinder_fs.cc38 DWORD err_code = ::GetLastError(); local
41 if (ERROR_NO_MORE_FILES != err_code) {
42 Output(FS_ERR, err_code, directory);
44 return err_code;
/external/libunwind/src/mi/
H A Dstrerror.c28 /* Returns the text corresponding to the given err_code or the
29 text "invalid error code" if the err_code is invalid. */
31 unw_strerror (int err_code) argument
34 unw_error_t error = (unw_error_t)-err_code;
/external/chromium_org/sandbox/win/src/
H A Drestricted_token_utils.cc48 unsigned err_code = restricted_token.AddRestrictingSidAllSids(); local
49 if (ERROR_SUCCESS != err_code)
50 return err_code;
109 DWORD err_code = ERROR_SUCCESS; local
111 err_code = restricted_token.AddAllSidsForDenyOnly(&sid_exceptions);
112 if (ERROR_SUCCESS != err_code)
113 return err_code;
117 err_code = restricted_token.DeleteAllPrivileges(&privilege_exceptions);
118 if (ERROR_SUCCESS != err_code)
119 return err_code;
149 DWORD err_code = job.Init(job_level, NULL, 0, 0); local
[all...]
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
H A Dregistry.cc17 LONG err_code = ::RegOpenKeyEx(hive, local
22 if (ERROR_SUCCESS == err_code) {
34 err_code);
H A Dprocesses_and_threads.cc48 DWORD err_code = ::GetLastError(); local
49 if (ERROR_NO_MORE_FILES != err_code) {
51 "the system\r\n", err_code);
92 DWORD err_code = ::GetLastError(); local
93 if (ERROR_NO_MORE_FILES != err_code) {
95 "the system\r\n", err_code);
/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_ci.c63 ** Parameter err_code is set to an AVDTP status value;
70 void bta_av_ci_setconfig(tBTA_AV_HNDL hndl, UINT8 err_code, UINT8 category, argument
78 p_buf->hdr.event = (err_code == AVDT_SUCCESS) ?
80 p_buf->err_code = err_code;
/external/bluetooth/bluedroid/bta/include/
H A Dbta_av_ci.h57 ** Parameter err_code is set to an AVDTP status value;
64 BTA_API extern void bta_av_ci_setconfig(tBTA_AV_HNDL hndl, UINT8 err_code,
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunserver.cc94 StunErrorCodeAttribute* err_code = StunAttribute::CreateErrorCode(); local
95 err_code->SetCode(error_code);
96 err_code->SetReason(error_desc);
97 err_msg.AddAttribute(err_code);
/external/chromium_org/mojo/tools/package_manager/
H A Dmanifest.cc21 int err_code = base::JSONReader::JSON_NO_ERROR; local
25 &err_code, err_msg));
26 if (err_code != base::JSONReader::JSON_NO_ERROR)
/external/bluetooth/bluedroid/stack/avdt/
H A Davdt_ccb_act.c274 UINT8 err_code; local
278 p_data->msg.multi.num_seps, &err_code)) == 0)
286 p_data->msg.hdr.err_code = err_code;
313 event = (p_data->msg.hdr.err_code == 0) ?
346 UINT8 err_code; local
350 p_data->msg.multi.num_seps, &err_code)) == 0)
358 p_data->msg.hdr.err_code = err_code;
386 event = (p_data->msg.hdr.err_code
674 UINT8 err_code = AVDT_ERR_CONNECT; local
804 UINT8 err_code = AVDT_ERR_TIMEOUT; local
961 UINT8 err_code = AVDT_ERR_CONNECT; local
[all...]
/external/tcpdump/
H A Dprint-pptp.c115 u_int8_t err_code; member in struct:pptp_msg_sccrp
132 u_int8_t err_code; member in struct:pptp_msg_stopccrp
143 u_int8_t err_code; member in struct:pptp_msg_echorp
166 u_int8_t err_code; member in struct:pptp_msg_ocrp
190 u_int8_t err_code; member in struct:pptp_msg_icrp
213 u_int8_t err_code; member in struct:pptp_msg_cdn
248 6 u_int8_t err_code;
337 pptp_err_code_print(const u_int8_t *err_code) argument
339 printf(" ERR_CODE(%u", *err_code);
341 switch (*err_code) {
[all...]
/external/pdfium/fpdfsdk/src/
H A 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()); local
129 if (err_code) {
131 ProcessParseError(err_code);
H A Dfpdfview.cpp245 void ProcessParseError(FX_DWORD err_code) argument
248 switch (err_code) {
250 err_code = FPDF_ERR_FILE;
253 err_code = FPDF_ERR_FORMAT;
256 err_code = FPDF_ERR_PASSWORD;
259 err_code = FPDF_ERR_SECURITY;
262 SetLastError(err_code);
275 FX_DWORD err_code = pParser->StartParse((FX_LPCSTR)file_path); local
276 if (err_code) {
278 ProcessParseError(err_code);
315 FX_DWORD err_code = pParser->StartParse(pMemFile); local
339 FX_DWORD err_code = pParser->StartParse(pFile); local
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dutil.c98 ** handle "db". The error code is set to "err_code".
114 ** should be called with err_code set to SQLITE_OK and zFormat set
117 void sqlite3Error(sqlite3 *db, int err_code, const char *zFormat, ...){ argument
119 db->errCode = err_code;
/external/srec/srec/include/
H A Dc42mul.h45 #define SETUP_RETURN(REC) ((REC)->err_code= setjmp ((REC)->except_buf))
47 #define SET_ERROR(CODE) (rec->err_code= CODE)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
H A Drc_test_helpers.c43 int err_code; local
46 err_code = regcomp(&regex, regex_str, REG_EXTENDED);
47 if (err_code) {
48 regerror(err_code, &regex, err_buf, REGEX_ERR_BUF_SIZE);
53 err_code = regexec(&regex, search_str, num_matches, matches, 0);
59 if (err_code) {
60 regerror(err_code, &regex, err_buf, REGEX_ERR_BUF_SIZE);
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Drc_test_helpers.c43 int err_code; local
46 err_code = regcomp(&regex, regex_str, REG_EXTENDED);
47 if (err_code) {
48 regerror(err_code, &regex, err_buf, REGEX_ERR_BUF_SIZE);
53 err_code = regexec(&regex, search_str, num_matches, matches, 0);
59 if (err_code) {
60 regerror(err_code, &regex, err_buf, REGEX_ERR_BUF_SIZE);
/external/opencv/cxcore/src/
H A Dcxerror.cpp59 int err_code; member in struct:CvContext
79 context->err_code = CV_StsOk;
324 return icvGetContext()->err_code;
329 icvGetContext()->err_code = code;
346 context->err_code = code;
/external/chromium_org/sandbox/win/tools/launcher/
H A Dlauncher.cc137 DWORD err_code = sandbox::StartRestrictedProcessInJob( local
143 if (ERROR_SUCCESS != err_code) {
144 wprintf(L"\nAbord, Error %d while launching command line.", err_code);
/external/chromium_org/sandbox/win/tests/validation_tests/
H A Dcommands.cc189 LONG err_code = ::RegOpenKeyEx(base_key, local
194 if (ERROR_SUCCESS == err_code) {
197 } else if (ERROR_INVALID_HANDLE == err_code ||
198 ERROR_ACCESS_DENIED == err_code) {
/external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/
H A Dvoe_cmd_test.cc72 virtual void CallbackOnError(int channel, int err_code);
75 void MyObserver::CallbackOnError(int channel, int err_code) { argument
77 if (err_code == VE_TYPING_NOISE_WARNING) {
79 } else if (err_code == VE_TYPING_NOISE_OFF_WARNING) {
81 } else if (err_code == VE_RECEIVE_PACKET_TIMEOUT) {
83 } else if (err_code == VE_PACKET_RECEIPT_RESTARTED) {
85 } else if (err_code == VE_RUNTIME_PLAY_WARNING) {
87 } else if (err_code == VE_RUNTIME_REC_WARNING) {
89 } else if (err_code == VE_SATURATION_WARNING) {
91 } else if (err_code
627 int err_code = 0; local
[all...]
/external/bluetooth/bluedroid/stack/smp/
H A Dsmp_api.c172 UINT8 err_code = SMP_PAIR_FAIL_UNKNOWN; local
181 smp_sm_event(p_cb, SMP_AUTH_CMPL_EVT, &err_code);
/external/bluetooth/bluedroid/stack/include/
H A Davdtc_api.h224 UINT8 err_code, UINT8 err_param);

Completed in 779 milliseconds

123