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

/external/libpcap/Win32/Src/
H A Dgai_strerror.c76 WSAAPI gai_strerrorA(int ecode) argument
78 if (ecode >= 0 && ecode < EAI_MAX)
79 return ai_errlist[ecode];
/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/tcpdump/
H A Dprint-smb.c965 int ecode; local
973 ecode = data[4];
976 switch (ecode) {
990 printf("Unspecified error 0x%X", ecode);
1038 int ecode; local
1046 ecode = origdata[4];
1047 switch (ecode) {
1061 printf("Unspecified error 0x%X\n", ecode);
/external/chromium_org/third_party/icu/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/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.c704 int rv, ecode, flags = JW_INTERRUPT|JW_ASYNCNOTIFY; local
729 } else if ((j = j_lookup(cp, &ecode))) {
742 if (ecode != JL_NOSUCH)
743 bi_errorf("%s: %s", cp, lookup_msgs[ecode]);
766 int rv = 0, ecode; local
773 if ((j = j_lookup(cp, &ecode)) == NULL) {
777 bi_errorf("%s: %s", cp, lookup_msgs[ecode]);
812 int ecode, rv = 0; local
818 if ((j = j_lookup(cp, &ecode)) == NULL) {
820 bi_errorf("%s: %s", cp, lookup_msgs[ecode]);
955 int ecode; local
[all...]
/external/pcre/dist/
H A Dpcre_dfa_exec.c2539 const pcre_uchar *ecode; local
2546 ecode = code + 1 + (32 / sizeof(pcre_uchar));
2560 ecode = code + GET(code, 1);
2564 /* At this point, isinclass is set for all kinds of class, and ecode
2568 next_state_offset = (int)(ecode - start_code);
2570 switch (*ecode)
2578 if (*ecode == OP_CRPOSSTAR)
2594 if (count > 0 && *ecode == OP_CRPOSPLUS)
2610 if (*ecode == OP_CRPOSQUERY)
2623 if (count >= (int)GET2(ecode,
[all...]
H A Dpcre_exec.c496 ecode pointer to current position in compiled code
513 match(REGISTER PCRE_PUCHAR eptr, REGISTER const pcre_uchar *ecode, argument
543 frame->Xecode = ecode;
556 #define ecode frame->Xecode macro
662 recursion. The second argument (ecode) being NULL triggers this behaviour. It
666 if (ecode == NULL)
752 op = *ecode;
757 md->nomatch_mark = ecode + 2;
759 RMATCH(eptr, ecode + PRIV(OP_lengths)[*ecode]
6237 #undef ecode macro
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c232 enum TDB_ERROR ecode; /* error code for last tdb error */ member in struct:tdb_context
294 return tdb->ecode;
298 enum TDB_ERROR ecode; const char *estring; member in struct:tdb_errname
315 if (tdb->ecode == emap[i].ecode)
343 tdb->ecode = TDB_ERR_RDONLY;
363 tdb->ecode = TDB_ERR_LOCK;
590 tdb->ecode = TDB_ERR_LOCK;
842 /* Ensure ecode is set for log fn. */
843 tdb->ecode
[all...]

Completed in 911 milliseconds