Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_match.c428 match(REGISTER PCRE2_SPTR eptr, REGISTER PCRE2_SPTR ecode, PCRE2_SPTR mstart,
579 match(REGISTER PCRE2_SPTR eptr, REGISTER PCRE2_SPTR ecode, PCRE2_SPTR mstart, in match() argument
608 frame->Xecode = ecode; in match()
621 #define ecode frame->Xecode in match() macro
798 op = *ecode; in match()
803 mb->nomatch_mark = ecode + 2; in match()
805 RMATCH(eptr, ecode + PRIV(OP_lengths)[*ecode] + ecode[1], offset_top, mb, in match()
808 mb->mark == NULL) mb->mark = ecode + 2; in match()
818 PRIV(strcmp)(ecode + 2, mb->start_match_ptr) == 0) in match()
829 RMATCH(eptr, ecode + PRIV(OP_lengths)[*ecode], offset_top, mb, in match()
[all …]
Dpcre2_dfa_match.c2453 PCRE2_SPTR ecode; in internal_dfa_match() local
2460 ecode = code + 1 + (32 / sizeof(PCRE2_UCHAR)); in internal_dfa_match()
2474 ecode = code + GET(code, 1); in internal_dfa_match()
2482 next_state_offset = (int)(ecode - start_code); in internal_dfa_match()
2484 switch (*ecode) in internal_dfa_match()
2492 if (*ecode == OP_CRPOSSTAR) in internal_dfa_match()
2508 if (count > 0 && *ecode == OP_CRPOSPLUS) in internal_dfa_match()
2524 if (*ecode == OP_CRPOSQUERY) in internal_dfa_match()
2537 if (count >= (int)GET2(ecode, 1)) in internal_dfa_match()
2541 int max = (int)GET2(ecode, 1 + IMM2_SIZE); in internal_dfa_match()
[all …]
/external/libpcap/Win32/Src/
Dgai_strerror.c76 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()
Dgetaddrinfo.c258 gai_strerror(ecode) in gai_strerror() argument
259 int ecode; in gai_strerror()
261 if (ecode < 0 || ecode > EAI_MAX)
262 ecode = EAI_MAX;
263 return ai_errlist[ecode];
/external/libcxx/src/
Dregex.cpp18 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/
Dtdb.c235 enum TDB_ERROR ecode; /* error code for last tdb error */ member
298 return tdb->ecode; in tdb_error()
302 enum TDB_ERROR ecode; const char *estring; member
319 if (tdb->ecode == emap[i].ecode) in tdb_errorstr()
347 tdb->ecode = TDB_ERR_RDONLY; in tdb_brlock()
367 tdb->ecode = TDB_ERR_LOCK; in tdb_brlock()
594 tdb->ecode = TDB_ERR_LOCK; in tdb_transaction_lock()
847 tdb->ecode = TDB_ERR_IO; in tdb_oob()
861 tdb->ecode = TDB_ERR_IO; in tdb_oob()
885 tdb->ecode = TDB_ERR_RDONLY; in tdb_write()
[all …]
Dtdb.h51 #define TDB_ERRCODE(code, ret) ((tdb->ecode = (code)), ret)
/external/netperf/src/missing/
Dgetaddrinfo.c227 gai_strerror(ecode) in gai_strerror() argument
228 int ecode; in gai_strerror()
230 if (ecode < 0 || ecode > EAI_SYSTEM)
233 return gettext(eai_errlist[ecode]);
/external/mksh/src/
Djobs.c703 int rv, ecode, flags = JW_INTERRUPT|JW_ASYNCNOTIFY; in waitfor() local
728 } else if ((j = j_lookup(cp, &ecode))) { in waitfor()
741 if (ecode != JL_NOSUCH) in waitfor()
742 bi_errorf(Tf_sD_s, cp, lookup_msgs[ecode]); in waitfor()
765 int rv = 0, ecode; in j_kill() local
772 if ((j = j_lookup(cp, &ecode)) == NULL) { in j_kill()
776 bi_errorf(Tf_sD_s, cp, lookup_msgs[ecode]); in j_kill()
811 int ecode, rv = 0; in j_resume() local
817 if ((j = j_lookup(cp, &ecode)) == NULL) { in j_resume()
819 bi_errorf(Tf_sD_s, cp, lookup_msgs[ecode]); in j_resume()
[all …]
/external/iputils/
Dtftpd.c226 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/llvm/test/CodeGen/X86/
Dx86-32-intrcc.ll30 define x86_intrcc void @test_isr_ecode(%struct.interrupt_frame* %frame, i32 %ecode) {
52 call x86_fastcallcc void asm sideeffect "", "r,r"(i32 %flags, i32 %ecode)
57 define x86_intrcc void @test_isr_clobbers(%struct.interrupt_frame* %frame, i32 %ecode) {
Dx86-64-intrcc.ll30 define x86_intrcc void @test_isr_ecode(%struct.interrupt_frame* %frame, i64 %ecode) {
52 call void asm sideeffect "", "r,r"(i64 %flags, i64 %ecode)
57 define x86_intrcc void @test_isr_clobbers(%struct.interrupt_frame* %frame, i64 %ecode) {
D2007-11-07-MulBy4.ll8 define fastcc i32 @foo(i16* %eptr, i8* %ecode, %struct.foo_data* %md, i32 %ims) {
/external/tcpdump/
Dprint-smb.c964 int ecode; in nbt_tcp_print() local
972 ecode = data[4]; in nbt_tcp_print()
975 switch (ecode) { in nbt_tcp_print()
989 ND_PRINT((ndo, "Unspecified error 0x%X", ecode)); in nbt_tcp_print()
1037 int ecode; in nbt_tcp_print() local
1045 ecode = origdata[4]; in nbt_tcp_print()
1046 switch (ecode) { in nbt_tcp_print()
1060 ND_PRINT((ndo, "Unspecified error 0x%X\n", ecode)); in nbt_tcp_print()
/external/icu/icu4c/source/extra/uconv/
Duconv.cpp1064 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/linux-kselftest/tools/testing/selftests/net/
Dreuseport_bpf.c340 struct bpf_insn ecode[] = { in test_filter_no_reuseport() local
353 eprog.insn_cnt = ARRAY_SIZE(ecode); in test_filter_no_reuseport()
354 eprog.insns = (unsigned long) &ecode; in test_filter_no_reuseport()
/external/curl/tests/server/
Dtftpd.c950 int first = 1, ecode; in do_tftp() local
1034 ecode = validate_access(test, filename, tp->th_opcode); in do_tftp()
1035 if(ecode) { in do_tftp()
1036 nak(ecode); in do_tftp()
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
D2007-11-07-MulBy4.ll8 define fastcc i32 @foo(i16* %eptr, i8* %ecode, %struct.foo_data* %md, i32 %ims) {
/external/libcxx/include/
Dregex87 explicit regex_error(regex_constants::error_type ecode);