Searched defs:status (Results 1 - 13 of 13) sorted by relevance

/dalvik/vm/jdwp/
H A DJdwpConstants.cpp238 const char* dvmJdwpSuspendStatusStr(JdwpSuspendStatus status) argument
240 switch (status) {
250 const char* dvmJdwpThreadStatusStr(JdwpThreadStatus status) argument
252 switch (status) {
H A DJdwpEvent.cpp1121 const char* signature, int status)
1183 expandBufAdd4BE(pReq, status);
1120 dvmJdwpPostClassPrepare(JdwpState* state, int tag, RefTypeId refTypeId, const char* signature, int status) argument
H A DJdwpHandler.cpp237 u4 status; local
239 /* get class vs. interface and status flags */
240 dvmDbgGetClassInfo(refTypeId, &typeTag, &status, NULL);
244 expandBufAdd4BE(pReply, status);
493 u4 status; local
495 dvmDbgGetClassInfo(classRefBuf[i], &refTypeTag, &status, &signature);
501 expandBufAdd4BE(pReply, status);
577 * Return the current status of the reference type.
584 /* get status flags */
586 u4 status; local
[all...]
/dalvik/vm/native/
H A Djava_lang_Runtime.cpp47 int status = args[0]; local
50 (*gDvm.exitHook)(status); // not expected to return
57 ALOGD("Calling exit(%d)", status);
58 exit(status);
H A Ddalvik_system_DexFile.cpp475 DexCacheStatus status; local
488 status = dvmDexCacheStatus(name);
489 ALOGV("dvmDexCacheStatus(%s) returned %d", name, status);
492 switch (status) {
H A Ddalvik_system_Zygote.cpp72 int status; local
74 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
75 /* Log process-death status that we care about. In general it is not
82 if (WIFEXITED(status)) {
83 if (WEXITSTATUS(status)) {
85 (int) pid, WEXITSTATUS(status));
90 (int) pid, WEXITSTATUS(status));
93 } else if (WIFSIGNALED(status)) {
94 if (WTERMSIG(status) != SIGKILL) {
97 (int) pid, WTERMSIG(status));
703 int status; local
[all...]
/dalvik/vm/
H A DAtomic.cpp60 int status; local
65 : "=&r" (prev), "=&r" (status), "+m"(*addr)
68 } while (__builtin_expect(status != 0, 0));
90 int status; local
98 : "=&r" (prev), "=&r" (status), "+m"(*addr)
101 } while (__builtin_expect(status != 0, 0));
H A DThread.h36 * Current status; these map to JDWP constants, so don't rearrange them.
225 * Thread's current status. Can only be changed by the thread itself
228 volatile ThreadStatus status; member in struct:Thread
260 /* thread "interrupted" status; stays raised until queried or thrown */
409 * Returns the old status.
549 const char* dvmGetThreadStatusStr(ThreadStatus status);
H A DDebugger.cpp478 int dvmDbgThreadContinuing(int status) argument
480 ThreadStatus newStatus = static_cast<ThreadStatus>(status);
488 void dvmDbgExit(int status) argument
497 exit(status);
670 if (clazz->status == CLASS_ERROR)
1711 * Get the status and suspend state of a thread.
1730 switch (thread->status) {
2679 * We change our (JDWP thread) status, which should be THREAD_RUNNING,
H A DJni.cpp32 All JNI methods must start by changing their thread status to
37 With a rudimentary GC we should be able to skip the status change for
2831 * Change the status to indicate that we're out in native code. This
2878 /* (no need to change status back -- we have no status) */
2899 /* TODO: status change is probably unnecessary */
3501 std::string status = local
3505 if (!status.empty()) {
3508 ALOGW("CreateJavaVM failed: %s", status.c_str());
/dalvik/vm/analysis/
H A DDexPrepare.cpp480 int status; local
489 gotPid = waitpid(pid, &status, 0);
503 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
507 ALOGW("DexOpt: --- END '%s' --- status=0x%04x, process failed",
508 lastPart, status);
/dalvik/vm/oo/
H A DObject.h371 ClassStatus status; member in struct:ClassObject
752 return clazz->status >= CLASS_RESOLVED;
756 return clazz->status >= CLASS_VERIFIED;
H A DClass.cpp353 newClass->status = CLASS_INITIALIZED;
1262 if (clazz != NULL && clazz->status < CLASS_INITIALIZED) {
1267 assert(clazz->status == CLASS_ERROR);
1435 if (clazz != NULL && clazz->status < CLASS_INITIALIZED) {
1440 assert(clazz->status == CLASS_ERROR);
1597 clazz->status = CLASS_ERROR;
1662 if (!dvmIsClassLinked(clazz) && clazz->status != CLASS_ERROR) {
1687 while (!dvmIsClassLinked(clazz) && clazz->status != CLASS_ERROR) {
1692 if (clazz->status == CLASS_ERROR) {
1780 newClass->status
4163 ClassStatus status = static_cast<ClassStatus>(value); local
[all...]

Completed in 222 milliseconds