Searched defs:status (Results 26 - 50 of 1610) sorted by relevance

1234567891011>>

/external/regex-re2/re2/testing/
H A Dregexp_test.cc44 RegexpStatus status; local
46 "(?P<g1>a+)|(e)(?P<g2>w*)+(?P<g1>b+)", Regexp::PerlX, &status);
47 EXPECT_TRUE(status.ok());
63 RegexpStatus status; local
65 "(?P<g1>a+)|(e)(?P<g2>w*)+(?P<g1>b+)", Regexp::PerlX, &status);
66 EXPECT_TRUE(status.ok());
/external/selinux/libsepol/cil/test/unit/
H A Dtest_integration.c41 int status = 0, status1 = 0, status2 = 0; local
43 status = system("./secilc -M -c 24 test/integration.cil &> /dev/null");
45 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
58 CuAssertIntEquals(tc, 1, WIFEXITED(status));
59 CuAssertIntEquals(tc, 0, WEXITSTATUS(status));
67 int status = 0; local
69 status = system("./secilc -M -c 24 test/policy.cil &> /dev/null");
71 if (WIFSIGNALED(status)
[all...]
/external/valgrind/gdbserver_tests/
H A Dclean_after_fork.c25 int status; local
26 while((ret = waitpid(pid, &status, 0)) != pid) {
32 mem = status;
H A Dfork_chain.c24 int status; local
25 while((ret = waitpid(pid, &status, 0)) != pid) {
/external/android-clat/
H A Ddns64.c42 int status; local
49 status = android_getaddrinfofornet(ipv4_name, NULL, &hints, net_id, MARK_UNSET, &result);
50 if (status != 0 || result == NULL) {
51 logmsg(ANDROID_LOG_ERROR, "plat_prefix/dns(%s) status = %d/%s",
52 ipv4_name, status, gai_strerror(status));
/external/antlr/antlr-3.4/runtime/Perl5/tools/
H A Dport.pl24 'status' => \&status,
117 my $status = $port->[0]->{status};
118 if (!defined $status) {
119 $status = $port->[0]->{status} = {};
127 $status->{$filename} = {
133 $help->{status} = << 'EOH';
134 status label
138 sub status { subroutine
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpResponseFactory.java54 * Creates a new response from status line elements.
57 * @param status the status code
59 * for looking up a reason phrase to the status code, or
62 * @return the new response with an initialized status line
64 HttpResponse newHttpResponse(ProtocolVersion ver, int status, argument
68 * Creates a new response from a status line.
70 * @param statusline the status line
72 * for looking up a reason phrase if the status code
76 * @return the new response with the argument status lin
[all...]
/external/compiler-rt/lib/tsan/benchmarks/
H A Dstart_many_threads.cc40 int status = pthread_create(&t[i], 0, Thread, (void*)i); local
41 assert(status == 0);
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dwait.cc22 int *status = x + argc * 3; local
25 res = wait(status);
27 res = waitpid(pid, status, WNOHANG);
29 res = wait3(status, WNOHANG, NULL);
H A Dwait4.cc24 int *status = x + argc * 3; local
27 res = wait4(pid, status, WNOHANG, NULL);
H A Dwaitid.cc13 int *status = x + argc * 3; local
/external/compiler-rt/test/lsan/TestCases/
H A Dfork_threaded.cc28 int status = 0; local
33 waitpid(pid, &status, 0);
34 assert(WIFEXITED(status));
35 return WEXITSTATUS(status);
/external/google-breakpad/src/common/mac/
H A Dlaunch_reporter.cc68 int status; local
69 pid_t result = waitpid(pid, &status, WNOHANG);
/external/icu/icu4c/source/common/
H A Dures_cnv.c30 UErrorCode *status)
36 if(status==NULL || U_FAILURE(*status)) {
45 *status=U_ILLEGAL_ARGUMENT_ERROR;
56 UConverter *cnv=u_getDefaultConverter(status);
57 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
59 if(U_FAILURE(*status)) {
64 *status=U_ILLEGAL_ARGUMENT_ERROR;
69 *status=U_UNSUPPORTED_ERROR;
75 return ures_open(path, localeID, status);
28 ures_openU(const UChar *myPath, const char *localeID, UErrorCode *status) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dfphdlimp.h51 UErrorCode status; member in class:FieldPositionIteratorHandler
53 // Note, we keep a reference to status, so if status is on the stack, we have
54 // to be destroyed before status goes out of scope. Easiest thing is to
55 // allocate us on the stack in the same (or narrower) scope as status has.
61 FieldPositionIteratorHandler(FieldPositionIterator* posIter, UErrorCode& status);
H A Dshareddateformatsymbols.h22 const Locale &loc, const char *type, UErrorCode &status)
23 : dfs(loc, type, status) { }
21 SharedDateFormatSymbols( const Locale &loc, const char *type, UErrorCode &status) argument
H A Dufieldpositer.cpp20 ufieldpositer_open(UErrorCode* status) argument
22 if (U_FAILURE(*status)) {
27 *status = U_MEMORY_ALLOCATION_ERROR;
H A Duspoof_build.cpp50 int32_t *errorType, UParseError *pe, UErrorCode *status) {
52 if (U_FAILURE(*status)) {
56 *status = U_UNSUPPORTED_ERROR;
70 SpoofData *newSpoofData = new SpoofData(*status);
71 SpoofImpl *This = new SpoofImpl(newSpoofData, *status);
74 ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *status);
75 buildWSConfusableData(This, confusablesWholeScript, confusablesWholeScriptLen, pe, *status);
77 if (U_FAILURE(*status)) {
48 uspoof_openFromSource(const char *confusables, int32_t confusablesLen, const char *confusablesWholeScript, int32_t confusablesWholeScriptLen, int32_t *errorType, UParseError *pe, UErrorCode *status) argument
/external/icu/icu4c/source/samples/numfmt/
H A Dcapi.c20 UErrorCode status = U_ZERO_ERROR; local
35 &status);
36 if (U_FAILURE(status)) {
46 a = unum_parseDouble(fmt, str, u_strlen(str), NULL, &status);
47 if (U_FAILURE(status)) {
64 needed = unum_formatDouble(fmt, a, buf, 256, NULL, &status);
65 if (U_FAILURE(status)) {
/external/icu/icu4c/source/samples/translit/answers/
H A Dmain_1.cpp22 UErrorCode status = U_ZERO_ERROR; local
27 cal = Calendar::createInstance(greece, status);
28 check(status, "Calendar::createInstance");
49 defFmt->format(cal->getTime(status), str, status);
50 check(status, "DateFormat::format");
57 fmt->format(cal->getTime(status), str, status);
58 check(status, "DateFormat::format");
H A Dmain_2.cpp23 UErrorCode status = U_ZERO_ERROR; local
28 cal = Calendar::createInstance(greece, status);
29 check(status, "Calendar::createInstance");
57 defFmt->format(cal->getTime(status), str, status);
58 check(status, "DateFormat::format");
65 fmt->format(cal->getTime(status), str, status);
66 check(status, "DateFormat::format");
/external/icu/icu4c/source/test/cintltst/
H A Dcdetst.c104 UErrorCode status = U_ZERO_ERROR; local
105 myCollation = ucol_open("de_DE", &status);
106 if(U_FAILURE(status)){
107 log_err_status(status, "ERROR: in creation of rule based collator: %s\n", myErrorName(status));
111 ucol_setAttribute(myCollation, UCOL_NORMALIZATION_MODE, UCOL_ON, &status);
124 UErrorCode status = U_ZERO_ERROR; local
125 myCollation = ucol_open("de_DE", &status);
126 if(U_FAILURE(status)){
127 log_err_status(status, "ERRO
[all...]
H A Dcestst.c89 UErrorCode status = U_ZERO_ERROR; local
90 myCollation = ucol_open("es_ES", &status);
91 if(U_FAILURE(status)){
92 log_err_status(status, "ERROR: %s: in creation of rule based collator: %s\n", __FILE__, myErrorName(status));
108 UErrorCode status = U_ZERO_ERROR; local
109 myCollation = ucol_open("es_ES", &status);
110 if(U_FAILURE(status)){
111 log_err_status(status, "ERROR: %s: in creation of rule based collator: %s\n", __FILE__, myErrorName(status));
[all...]
H A Dcfintst.c80 UErrorCode status = U_ZERO_ERROR; local
81 myCollation = ucol_open("fi_FI@collation=standard", &status);
82 if(U_FAILURE(status)){
83 log_err_status(status, "ERROR: in creation of rule based collator: %s\n", myErrorName(status));
98 UErrorCode status = U_ZERO_ERROR; local
99 myCollation = ucol_open("fi_FI@collation=standard", &status);
100 if(U_FAILURE(status)){
101 log_err_status(status, "ERROR: in creation of rule based collator: %s\n", myErrorName(status));
[all...]
H A Dcformtst.c65 UErrorCode status = U_ZERO_ERROR; local
69 resultlengthneeded=udat_format(dat, d1, NULL, resultlength, NULL, &status);
70 if(status==U_BUFFER_OVERFLOW_ERROR)
72 status=U_ZERO_ERROR;
75 udat_format(dat, d1, result1, resultlength, NULL, &status);
77 if(U_FAILURE(status))
79 log_err("Error in formatting using udat_format(.....): %s\n", myErrorName(status));

Completed in 3818 milliseconds

1234567891011>>