Searched defs:ecode (Results 1 - 12 of 12) sorted by relevance

/external/libcxx/src/
H A Dregex.cpp18 make_error_type_string(regex_constants::error_type ecode) argument
20 switch (ecode)
63 regex_error::regex_error(regex_constants::error_type ecode) argument
64 : runtime_error(make_error_type_string(ecode)),
65 __code_(ecode)
/external/iputils/
H A Dtftpd.c226 int first = 1, ecode; local
256 ecode = (*pf->f_validate)(filename, tp->th_opcode);
257 if (ecode) {
258 nak(ecode);
/external/linux-kselftest/tools/testing/selftests/net/
H A Dreuseport_bpf.c340 struct bpf_insn ecode[] = { local
353 eprog.insn_cnt = ARRAY_SIZE(ecode);
354 eprog.insns = (unsigned long) &ecode;
/external/python/cpython2/Modules/
H A Dgetaddrinfo.c202 gai_strerror(int ecode) argument
204 if (ecode < 0 || ecode > EAI_MAX)
205 ecode = EAI_MAX;
206 return ai_errlist[ecode];
/external/python/cpython3/Modules/
H A Dgetaddrinfo.c202 gai_strerror(int ecode) argument
204 if (ecode < 0 || ecode > EAI_MAX)
205 ecode = EAI_MAX;
206 return ai_errlist[ecode];
/external/tcpdump/
H A Dprint-smb.c967 int ecode; local
975 ecode = data[4];
978 switch (ecode) {
992 ND_PRINT((ndo, "Unspecified error 0x%X", ecode));
1040 int ecode; local
1048 ecode = origdata[4];
1049 switch (ecode) {
1063 ND_PRINT((ndo, "Unspecified error 0x%X\n", ecode));
/external/curl/tests/server/
H A Dtftpd.c955 int first = 1, ecode; local
1039 ecode = validate_access(test, filename, tp->th_opcode);
1040 if(ecode) {
1041 nak(ecode);
/external/icu/icu4c/source/extra/uconv/
H A Duconv.cpp1064 static void usage(const char *pname, int ecode) { argument
1068 FILE *fp = ecode ? stderr : stdout;
1073 ures_getStringByKey(gBundle, ecode ? "lcUsageWord" : "ucUsageWord",
1079 if (!ecode) {
1095 exit(ecode);
/external/mksh/src/
H A Djobs.c716 int rv, ecode, flags = JW_INTERRUPT|JW_ASYNCNOTIFY; local
741 } else if ((j = j_lookup(cp, &ecode))) {
754 if (ecode != JL_NOSUCH)
755 bi_errorf(Tf_sD_s, cp, lookup_msgs[ecode]);
778 int rv = 0, ecode; local
785 if ((j = j_lookup(cp, &ecode)) == NULL) {
789 bi_errorf(Tf_sD_s, cp, lookup_msgs[ecode]);
824 int ecode, rv = 0; local
830 if ((j = j_lookup(cp, &ecode)) == NULL) {
832 bi_errorf(Tf_sD_s, cp, lookup_msgs[ecode]);
967 int ecode; local
[all...]
/external/pcre/dist2/src/
H A Dpcre2_dfa_match.c2453 PCRE2_SPTR ecode; local
2460 ecode = code + 1 + (32 / sizeof(PCRE2_UCHAR));
2474 ecode = code + GET(code, 1);
2478 /* At this point, isinclass is set for all kinds of class, and ecode
2482 next_state_offset = (int)(ecode - start_code);
2484 switch (*ecode)
2492 if (*ecode == OP_CRPOSSTAR)
2508 if (count > 0 && *ecode == OP_CRPOSPLUS)
2524 if (*ecode == OP_CRPOSQUERY)
2537 if (count >= (int)GET2(ecode,
[all...]
H A Dpcre2_match.c428 match(REGISTER PCRE2_SPTR eptr, REGISTER PCRE2_SPTR ecode, PCRE2_SPTR mstart,
562 ecode pointer to current position in compiled code
579 match(REGISTER PCRE2_SPTR eptr, REGISTER PCRE2_SPTR ecode, PCRE2_SPTR mstart, argument
608 frame->Xecode = ecode;
621 #define ecode frame->Xecode macro
798 op = *ecode;
803 mb->nomatch_mark = ecode + 2;
805 RMATCH(eptr, ecode + PRIV(OP_lengths)[*ecode] + ecode[
6343 #undef ecode macro
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c235 enum TDB_ERROR ecode; /* error code for last tdb error */ member in struct:tdb_context
298 return tdb->ecode;
302 enum TDB_ERROR ecode; const char *estring; member in struct:tdb_errname
319 if (tdb->ecode == emap[i].ecode)
347 tdb->ecode = TDB_ERR_RDONLY;
367 tdb->ecode = TDB_ERR_LOCK;
594 tdb->ecode = TDB_ERR_LOCK;
846 /* Ensure ecode is set for log fn. */
847 tdb->ecode
[all...]

Completed in 457 milliseconds