Searched defs:status (Results 501 - 525 of 1610) sorted by relevance

<<21222324252627282930>>

/external/deqp/modules/gles31/functional/
H A Des31fFboTestCase.cpp143 deUint32 status = glCheckFramebufferStatus(target); local
144 if (status != GL_FRAMEBUFFER_COMPLETE)
145 throw FboTestUtil::FboIncompleteException(status, __FILE__, __LINE__);
/external/dnsmasq/src/
H A Dhelper.c175 int status; local
176 pid_t rc = wait(&status);
181 if (WIFSIGNALED(status))
182 send_event(event_fd, EVENT_KILLED, WTERMSIG(status));
183 else if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
184 send_event(event_fd, EVENT_EXITED, WEXITSTATUS(status));
/external/e2fsprogs/ext2ed/
H A Ddir_com.c82 struct struct_file_info search_dir_entries (int (*action) (struct struct_file_info *info),int *status) argument
94 If the last entry is reached, it is returned, along with an ABORT status.
96 status is updated to the returned code of action.
110 *status=return_code=action (&info); /* Call the client function to test */
144 *status=ABORT;return (info); /* There was no match */
157 int status; local
159 return (search_dir_entries (&action_count,&status).dir_entry_num);
218 int status; local
257 info=search_dir_entries (&action_name,&status); /* Search for the entry. Answer in info. */
259 status
345 int status; local
433 int status; local
[all...]
/external/e2fsprogs/misc/
H A Dlogsave.c162 int status, rc, pid; local
201 while (!(waitpid(pid, &status, WNOHANG ))) {
208 if ( WIFEXITED(status) ) {
209 rc = WEXITSTATUS(status);
212 sprintf(buffer, " died with exit status %d\n", rc);
216 if (WIFSIGNALED(status)) {
219 WTERMSIG(status));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DConfigResultsElement.java59 static Vector initDescriptors(int status) { argument
62 DESCRIPTORS.add(getInfosDescriptor(status));
63 DESCRIPTORS.add(getWarningsDescriptor(status));
88 static ComboBoxPropertyDescriptor getInfosDescriptor(int status) { argument
90 if ((status & SMALL_VALUE) != 0) {
93 if ((status & STUDENT_TTEST) != 0) {
104 static PropertyDescriptor getWarningsDescriptor(int status) { argument
106 if ((status & BIG_ERROR) != 0) {
109 if ((status & NOT_RELIABLE) != 0) {
112 if ((status
[all...]
H A DDimResultsElement.java48 static Vector initDescriptors(int status) { argument
51 DESCRIPTORS.add(getInfosDescriptor(status));
52 DESCRIPTORS.add(getWarningsDescriptor(status));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DBuildsView.java66 IStatus status; field in class:BuildsView.GenerateAction
145 GenerateAction.this.status = generation.run(monitor);
164 if (!this.status.isOK()) {
167 swriter.write(this.status.getMessage());
168 Throwable ex = this.status.getException();
175 MessageDialog.open(this.status.getSeverity(),
301 * Compute the list of builds to update based on their status.
/external/elfutils/src/libdwfl/
H A Dlinux-pid-attach.c49 snprintf (buffer, sizeof (buffer), "/proc/%ld/status", (long) pid);
89 int status; local
90 if (waitpid (tid, &status, __WALL) != tid || !WIFSTOPPED (status))
98 if (WSTOPSIG (status) == SIGSTOP)
101 (void *) (uintptr_t) WSTOPSIG (status)) != 0)
297 snprintf (buffer, sizeof (buffer), "/proc/%ld/status", (long) pid);
/external/elfutils/src/tests/
H A Dbacktrace-data.c286 int status; local
287 pid_t pid = waitpid (child, &status, 0);
290 assert (WIFSTOPPED (status));
291 assert (WSTOPSIG (status) == SIGUSR1);
319 pid = waitpid (child, &status, 0);
322 assert (WIFSIGNALED (status));
323 assert (WTERMSIG (status) == SIGKILL);
/external/fio/engines/
H A Dwindowsaio.c269 DWORD status; local
297 status = WaitForSingleObject(wd->iocomplete_event, mswait);
298 if (status != WAIT_OBJECT_0 && dequeued >= min)
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_ptrace_dumper_unittest.cc94 int status; local
95 waitpid(child_pid_, &status, 0);
96 if (WEXITSTATUS(status) == kFatalFailure) {
98 } else if (WEXITSTATUS(status) == kNonFatalFailure) {
463 int status;
464 ASSERT_NE(-1, HANDLE_EINTR(waitpid(child_pid, &status, 0)));
465 ASSERT_TRUE(WIFSIGNALED(status));
466 ASSERT_EQ(SIGKILL, WTERMSIG(status));
/external/google-breakpad/src/common/android/include/sys/
H A Duser.h102 unsigned long long status; member in struct:user_regs_struct
/external/google-breakpad/src/common/linux/tests/
H A Dcrash_generator.cc63 "auxv", "cmdline", "environ", "maps", "status"
222 // seem to be an API to check on signal delivery status, so we can't
238 int status; local
239 if (HANDLE_EINTR(waitpid(pid, &status, 0)) == -1) {
243 if (!WIFSIGNALED(status) || WTERMSIG(status) != crash_signal) {
245 " exit status=0x%x pid=%u signaled=%s sig=%d expected=%d\n",
246 status, pid, WIFSIGNALED(status) ? "true" : "false",
247 WTERMSIG(status), crash_signa
[all...]
/external/google-breakpad/src/google_breakpad/common/
H A Dminidump_cpu_mips.h76 uint64_t status; member in struct:__anon5151
102 uint32_t fpcsr; /* FPU status register. */
131 uint32_t status; member in struct:__anon5154
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-port.cc93 const kern_return_t status = task_threads(task, &thread_list, &thread_count); local
94 if (status == KERN_SUCCESS) {
116 const int status = local
119 if (status == EOK) {
/external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
H A Dprotobufwireadapter.cc182 if (outer.status() != OuterMessage_Status_STATUS_OK) {
183 LOG(ERROR) << "Got error message: " << outer.status();
185 switch (outer.status()) {
368 OuterMessage_Status status; local
371 status = OuterMessage_Status_STATUS_BAD_CONFIGURATION;
374 status = OuterMessage_Status_STATUS_BAD_SECRET;
377 status = OuterMessage_Status_STATUS_ERROR;
380 outer.set_status(status);
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
H A DXmlMessageBuilder.java64 private static final String OUTER_FIELD_STATUS = "status";
141 int status = payload.getInt(OUTER_FIELD_STATUS);
142 if (status != STATUS_OK) {
416 public String getOuterXML(PoloMessage message, int status) { argument
422 // status
424 out.append(status);
453 * error code in the status field. The error code is determined by the type
/external/gtest/src/
H A Dgtest-port.cc94 const kern_return_t status = task_threads(task, &thread_list, &thread_count); local
95 if (status == KERN_SUCCESS) {
117 const int status = local
120 if (status == EOK) {
/external/icu/icu4c/source/common/
H A Dbrkeng.cpp57 UnhandledEngine::UnhandledEngine(UErrorCode &/*status*/) {
111 UErrorCode status = U_ZERO_ERROR; local
114 fHandled[breakType]->applyIntPropertyValue(UCHAR_SCRIPT, script, status);
123 ICULanguageBreakFactory::ICULanguageBreakFactory(UErrorCode &/*status*/) {
146 UErrorCode status = U_ZERO_ERROR; local
170 UStack *engines = new UStack(_deleteEngine, NULL, status);
171 if (U_SUCCESS(status) && engines == NULL) {
172 status = U_MEMORY_ALLOCATION_ERROR;
174 else if (U_FAILURE(status)) {
209 fEngines->push((void *)newlbe, status);
222 UErrorCode status = U_ZERO_ERROR; local
287 UErrorCode status = U_ZERO_ERROR; local
303 ext.appendInvariantChars(UnicodeString(FALSE, extStart + 1, dictnlength - len - 1), status); local
306 dictnbuf.appendInvariantChars(UnicodeString(FALSE, dictfname, dictnlength), status); local
[all...]
H A Dcaniter.cpp68 CanonicalIterator::CanonicalIterator(const UnicodeString &sourceStr, UErrorCode &status) : argument
74 nfd(*Normalizer2::getNFDInstance(status)),
75 nfcImpl(*Normalizer2Factory::getNFCImpl(status))
77 if(U_SUCCESS(status) && nfcImpl.ensureCanonIterData(status)) {
78 setSource(sourceStr, status);
166 void CanonicalIterator::setSource(const UnicodeString &newSource, UErrorCode &status) { argument
173 nfd.normalize(newSource, source, status);
174 if(U_FAILURE(status)) {
189 status
265 permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCode &status) argument
342 getEquivalents(const UnicodeString &segment, int32_t &result_len, UErrorCode &status) argument
430 getEquivalents2(Hashtable *fillinResult, const UChar *segment, int32_t segLen, UErrorCode &status) argument
498 extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status) argument
560 fillinResult->put(UnicodeString(), new UnicodeString(), status); local
[all...]
H A Dlocmap.c900 * @param status gets set to U_ILLEGAL_ARGUMENT_ERROR when the Posix ID has
905 getHostID(const ILcidPosixMap *this_0, const char* posixID, UErrorCode* status) argument
928 *status = U_USING_FALLBACK_WARNING;
933 *status = U_ILLEGAL_ARGUMENT_ERROR;
980 uprv_convertToPosix(uint32_t hostid, char *posixID, int32_t posixIDCapacity, UErrorCode* status) argument
1042 if (*status == U_STRING_NOT_TERMINATED_WARNING) {
1043 *status = U_ZERO_ERROR;
1046 *status = U_STRING_NOT_TERMINATED_WARNING;
1048 *status = U_BUFFER_OVERFLOW_ERROR;
1054 *status
1070 uprv_convertToLCID(const char *langID, const char* posixID, UErrorCode* status) argument
[all...]
H A Dnormlzr.cpp123 UErrorCode &status) {
124 if(source.isBogus() || U_FAILURE(status)) {
126 if(U_SUCCESS(status)) {
127 status=U_ILLEGAL_ARGUMENT_ERROR;
139 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, status);
140 if(U_SUCCESS(status)) {
142 FilteredNormalizer2(*n2, *uniset_getUnicode32Instance(status)).
143 normalize(source, *dest, status);
145 n2->normalize(source, *dest, status);
148 if(dest==&localDest && U_SUCCESS(status)) {
120 normalize(const UnicodeString& source, UNormalizationMode mode, int32_t options, UnicodeString& result, UErrorCode &status) argument
155 compose(const UnicodeString& source, UBool compat, int32_t options, UnicodeString& result, UErrorCode &status) argument
163 decompose(const UnicodeString& source, UBool compat, int32_t options, UnicodeString& result, UErrorCode &status) argument
171 quickCheck(const UnicodeString& source, UNormalizationMode mode, int32_t options, UErrorCode &status) argument
188 isNormalized(const UnicodeString& source, UNormalizationMode mode, int32_t options, UErrorCode &status) argument
398 setText(const UnicodeString& newText, UErrorCode &status) argument
419 setText(const CharacterIterator& newText, UErrorCode &status) argument
436 setText(const UChar* newText, int32_t length, UErrorCode &status) argument
[all...]
H A Drbbidata.cpp48 RBBIDataWrapper::RBBIDataWrapper(const RBBIDataHeader *data, UErrorCode &status) { argument
50 init(data, status);
53 RBBIDataWrapper::RBBIDataWrapper(const RBBIDataHeader *data, enum EDontAdopt, UErrorCode &status) { argument
55 init(data, status);
59 RBBIDataWrapper::RBBIDataWrapper(UDataMemory* udm, UErrorCode &status) { argument
61 if (U_FAILURE(status)) {
76 status = U_INVALID_FORMAT_ERROR;
81 init(rbbidh, status);
104 void RBBIDataWrapper::init(const RBBIDataHeader *data, UErrorCode &status) { argument
105 if (U_FAILURE(status)) {
304 ubrk_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *status) argument
[all...]
H A Drbbisetb.cpp139 fRangeList = new RangeDescriptor(*fStatus); // will check for status here
564 RangeDescriptor::RangeDescriptor(const RangeDescriptor &other, UErrorCode &status) { argument
571 UErrorCode oldstatus = status;
572 this->fIncludesSets = new UVector(status);
574 status = oldstatus;
576 if (U_FAILURE(status)) {
581 status = U_MEMORY_ALLOCATION_ERROR;
586 this->fIncludesSets->addElement(other.fIncludesSets->elementAt(i), status);
596 RangeDescriptor::RangeDescriptor(UErrorCode &status) { argument
601 UErrorCode oldstatus = status;
633 split(UChar32 where, UErrorCode &status) argument
[all...]
H A Dservls.cpp44 ICULocaleService::get(const Locale& locale, UErrorCode& status) const
46 return get(locale, LocaleKey::KIND_ANY, NULL, status);
50 ICULocaleService::get(const Locale& locale, int32_t kind, UErrorCode& status) const
52 return get(locale, kind, NULL, status);
56 ICULocaleService::get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const
58 return get(locale, LocaleKey::KIND_ANY, actualReturn, status);
62 ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const
65 if (U_FAILURE(status)) {
71 status = U_MEMORY_ALLOCATION_ERROR;
73 ICUServiceKey* key = createKey(&locName, kind, status);
94 registerInstance(UObject* objToAdopt, const UnicodeString& locale, UBool visible, UErrorCode& status) argument
104 registerInstance(UObject* objToAdopt, const Locale& locale, UErrorCode& status) argument
110 registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, UErrorCode& status) argument
116 registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage, UErrorCode& status) argument
161 ServiceEnumeration(const ICULocaleService* service, UErrorCode &status) argument
170 ServiceEnumeration(const ServiceEnumeration &other, UErrorCode &status) argument
192 UErrorCode status = U_ZERO_ERROR; local
204 UErrorCode status = U_ZERO_ERROR; local
227 snext(UErrorCode& status) argument
234 reset(UErrorCode& status) argument
[all...]

Completed in 544 milliseconds

<<21222324252627282930>>