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

1 2 3

  /external/chromium_org/sandbox/win/tools/finder/
finder_registry.cc 15 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 = ::RegOpenKeyEx(key, name, 0, GENERIC_ALL, &key_res)
    [all...]
finder.cc 28 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;
finder_fs.cc 38 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/
strerror.c 28 /* 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)
34 unw_error_t error = (unw_error_t)-err_code;
  /external/chromium_org/sandbox/win/src/
restricted_token_utils.cc 48 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/
registry.cc 17 LONG err_code = ::RegOpenKeyEx(hive, local
22 if (ERROR_SUCCESS == err_code) {
34 err_code);
processes_and_threads.cc 48 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/
bta_av_ci.c 63 ** 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,
78 p_buf->hdr.event = (err_code == AVDT_SUCCESS) ?
80 p_buf->err_code = err_code;
  /external/bluetooth/bluedroid/bta/include/
bta_av_ci.h 57 ** 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/
stunserver.cc 94 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/
manifest.cc 21 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/
avdt_ccb_act.c 274 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 == 0)
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/
print-pptp.c 115 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)
339 printf(" ERR_CODE(%u", *err_code);
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdf_dataavail.cpp 10 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);
fpdfview.cpp 245 void ProcessParseError(FX_DWORD err_code)
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/
util.c 98 ** 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, ...){
119 db->errCode = err_code;
  /external/srec/srec/include/
c42mul.h 45 #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/
rc_test_helpers.c 43 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/
rc_test_helpers.c 43 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/
cxerror.cpp 59 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;
  /device/moto/shamu/
init.mmi.touch.sh 49 local err_code=$1
50 case $err_code in
59 exit $err_code
  /external/chromium_org/sandbox/win/tools/launcher/
launcher.cc 137 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/ppapi/native_client/src/trusted/plugin/
pnacl_translate_thread.h 81 void TranslateFailed(PP_NaClError err_code,
  /external/chromium_org/sandbox/win/tests/validation_tests/
commands.cc 189 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/
voe_cmd_test.cc 72 virtual void CallbackOnError(int channel, int err_code);
75 void MyObserver::CallbackOnError(int channel, int err_code) {
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 == VE_RUNTIME_PLAY_ERROR)
627 int err_code = 0; local
    [all...]

Completed in 339 milliseconds

1 2 3