/external/pcre/dist/ |
D | pcre_exec.c | 513 match(REGISTER PCRE_PUCHAR eptr, REGISTER const pcre_uchar *ecode, in match() argument 543 frame->Xecode = ecode; in match() 556 #define ecode frame->Xecode in match() macro 666 if (ecode == NULL) in match() 752 op = *ecode; in match() 757 md->nomatch_mark = ecode + 2; in match() 759 RMATCH(eptr, ecode + PRIV(OP_lengths)[*ecode] + ecode[1], offset_top, md, in match() 762 md->mark == NULL) md->mark = ecode + 2; in match() 772 STRCMP_UC_UC_TEST(ecode + 2, md->start_match_ptr) == 0) in match() 783 RMATCH(eptr, ecode + PRIV(OP_lengths)[*ecode], offset_top, md, in match() [all …]
|
D | pcre_dfa_exec.c | 2539 const pcre_uchar *ecode; in internal_dfa_exec() local 2546 ecode = code + 1 + (32 / sizeof(pcre_uchar)); in internal_dfa_exec() 2560 ecode = code + GET(code, 1); in internal_dfa_exec() 2568 next_state_offset = (int)(ecode - start_code); in internal_dfa_exec() 2570 switch (*ecode) in internal_dfa_exec() 2578 if (*ecode == OP_CRPOSSTAR) in internal_dfa_exec() 2594 if (count > 0 && *ecode == OP_CRPOSPLUS) in internal_dfa_exec() 2610 if (*ecode == OP_CRPOSQUERY) in internal_dfa_exec() 2623 if (count >= (int)GET2(ecode, 1)) in internal_dfa_exec() 2627 int max = (int)GET2(ecode, 1 + IMM2_SIZE); in internal_dfa_exec() [all …]
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | trans3.test | 20 unset -nocomplain ecode 34 set ::ecode {} 38 set ::ecode [sqlite3_extended_errcode db] 46 set ::ecode 57 set ::ecode {} 61 set ::ecode [sqlite3_extended_errcode db] 69 set ::ecode 75 unset -nocomplain ecode
|
/external/libpcap/Win32/Src/ |
D | gai_strerror.c | 76 WSAAPI gai_strerrorA(int ecode) in gai_strerrorA() argument 78 if (ecode >= 0 && ecode < EAI_MAX) in gai_strerrorA() 79 return ai_errlist[ecode]; in gai_strerrorA()
|
D | getaddrinfo.c | 263 gai_strerror(ecode) in gai_strerror() argument 264 int ecode; in gai_strerror() 266 if (ecode < 0 || ecode > EAI_MAX) 267 ecode = EAI_MAX; 268 return ai_errlist[ecode];
|
/external/libcxx/src/ |
D | regex.cpp | 18 make_error_type_string(regex_constants::error_type ecode) in make_error_type_string() argument 20 switch (ecode) in make_error_type_string() 63 regex_error::regex_error(regex_constants::error_type ecode) in regex_error() argument 64 : runtime_error(make_error_type_string(ecode)), in regex_error() 65 __code_(ecode) in regex_error()
|
/external/e2fsprogs/lib/ext2fs/ |
D | tdb.c | 232 enum TDB_ERROR ecode; /* error code for last tdb error */ member 294 return tdb->ecode; in tdb_error() 298 enum TDB_ERROR ecode; const char *estring; member 315 if (tdb->ecode == emap[i].ecode) in tdb_errorstr() 343 tdb->ecode = TDB_ERR_RDONLY; in tdb_brlock() 363 tdb->ecode = TDB_ERR_LOCK; in tdb_brlock() 590 tdb->ecode = TDB_ERR_LOCK; in tdb_transaction_lock() 843 tdb->ecode = TDB_ERR_IO; in tdb_oob() 857 tdb->ecode = TDB_ERR_IO; in tdb_oob() 881 tdb->ecode = TDB_ERR_RDONLY; in tdb_write() [all …]
|
D | tdb.h | 51 #define TDB_ERRCODE(code, ret) ((tdb->ecode = (code)), ret)
|
/external/mksh/src/ |
D | jobs.c | 704 int rv, ecode, flags = JW_INTERRUPT|JW_ASYNCNOTIFY; in waitfor() local 729 } else if ((j = j_lookup(cp, &ecode))) { in waitfor() 742 if (ecode != JL_NOSUCH) in waitfor() 743 bi_errorf("%s: %s", cp, lookup_msgs[ecode]); in waitfor() 766 int rv = 0, ecode; in j_kill() local 773 if ((j = j_lookup(cp, &ecode)) == NULL) { in j_kill() 777 bi_errorf("%s: %s", cp, lookup_msgs[ecode]); in j_kill() 812 int ecode, rv = 0; in j_resume() local 818 if ((j = j_lookup(cp, &ecode)) == NULL) { in j_resume() 820 bi_errorf("%s: %s", cp, lookup_msgs[ecode]); in j_resume() [all …]
|
/external/iputils/ |
D | tftpd.c | 226 int first = 1, ecode; in tftp() local 256 ecode = (*pf->f_validate)(filename, tp->th_opcode); in tftp() 257 if (ecode) { in tftp() 258 nak(ecode); in tftp()
|
/external/tcpdump/ |
D | print-smb.c | 965 int ecode; in nbt_tcp_print() local 973 ecode = data[4]; in nbt_tcp_print() 976 switch (ecode) { in nbt_tcp_print() 990 printf("Unspecified error 0x%X", ecode); in nbt_tcp_print() 1038 int ecode; in nbt_tcp_print() local 1046 ecode = origdata[4]; in nbt_tcp_print() 1047 switch (ecode) { in nbt_tcp_print() 1061 printf("Unspecified error 0x%X\n", ecode); in nbt_tcp_print()
|
/external/chromium_org/third_party/icu/source/extra/uconv/ |
D | uconv.cpp | 1064 static void usage(const char *pname, int ecode) { in usage() argument 1068 FILE *fp = ecode ? stderr : stdout; in usage() 1073 ures_getStringByKey(gBundle, ecode ? "lcUsageWord" : "ucUsageWord", in usage() 1079 if (!ecode) { in usage() 1095 exit(ecode); in usage()
|
/external/icu/icu4c/source/extra/uconv/ |
D | uconv.cpp | 1064 static void usage(const char *pname, int ecode) { in usage() argument 1068 FILE *fp = ecode ? stderr : stdout; in usage() 1073 ures_getStringByKey(gBundle, ecode ? "lcUsageWord" : "ucUsageWord", in usage() 1079 if (!ecode) { in usage() 1095 exit(ecode); in usage()
|
/external/llvm/test/CodeGen/X86/ |
D | 2007-11-07-MulBy4.ll | 8 define fastcc i32 @foo(i16* %eptr, i8* %ecode, %struct.foo_data* %md, i32 %ims) {
|
/external/libcxx/include/ |
D | regex | 87 explicit regex_error(regex_constants::error_type ecode);
|