Searched refs:status (Results 1 - 25 of 38) sorted by relevance

12

/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 DJdwpConstants.h185 const char* dvmJdwpSuspendStatusStr(JdwpSuspendStatus status);
197 const char* dvmJdwpThreadStatusStr(JdwpThreadStatus status);
H A DJdwpMain.cpp318 if (dvmThreadSelf()->status != THREAD_VMWAIT) {
320 dvmThreadSelf()->status);
H A DJdwp.h223 const char* signature, int status);
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);
494 u4 status; local
496 dvmDbgGetClassInfo(classRefBuf[i], &refTypeTag, &status, &signature);
502 expandBufAdd4BE(pReply, status);
578 * Return the current status of the reference type.
585 /* get status flags */
587 u4 status; local
[all...]
/dalvik/vm/native/
H A Djava_lang_Runtime.cpp49 int status = args[0]; local
52 (*gDvm.exitHook)(status); // not expected to return
59 ALOGD("Calling exit(%d)", status);
60 exit(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));
710 int status; local
[all...]
H A Ddalvik_system_DexFile.cpp476 DexCacheStatus status; local
489 status = dvmDexCacheStatus(name);
490 ALOGV("dvmDexCacheStatus(%s) returned %d", name, status);
493 switch (status) {
H A Djava_lang_VMThread.cpp55 * Gets the Thread status. Result is in VM terms, has to be mapped to
67 result = thread->status;
/dalvik/tools/
H A Ddex-preopt297 status="$?"
298 if [ "${status}" != '0' ]; then
299 exit "${status}"
314 status="$?"
315 if [ "${status}" != '0' ]; then
316 exit "${status}"
/dalvik/vm/
H A DAtomic.cpp57 int status; local
62 : "=&r" (prev), "=&r" (status), "+m"(*addr)
65 } while (__builtin_expect(status != 0, 0));
87 int status; local
95 : "=&r" (prev), "=&r" (status), "+m"(*addr)
98 } while (__builtin_expect(status != 0, 0));
H A DThread.cpp290 thread->status = THREAD_RUNNING;
384 oldStatus = self->status;
385 self->status = THREAD_VMWAIT;
394 self->status = oldStatus;
433 case SUSPEND_FOR_REFRESH: return "refresh jit status";
609 if (target->status == THREAD_RUNNING) {
826 thread->status = THREAD_INITIALIZING;
1064 if (self->status == THREAD_ZOMBIE) {
1268 assert(newThread->status == THREAD_INITIALIZING);
1341 * So, we change our own status t
[all...]
H A DDdm.cpp166 if (self->status != THREAD_RUNNING) {
167 ALOGE("ERROR: DDM broadcast with thread status=%d", self->status);
345 * (1b) thread status
401 set1(buf+4, thread->status);
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 */
414 * Returns the old status.
554 const char* dvmGetThreadStatusStr(ThreadStatus status);
H A DDebugger.h147 * status, which can be fed to dvmDbgThreadGoing() to restore the previous
152 int dvmDbgThreadContinuing(int status);
157 void dvmDbgExit(int 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,
/dalvik/opcode-gen/
H A Dopcode-gen.awk247 function readBytecodes(i, parts, line, cmd, status, count) {
248 # locals: parts, line, cmd, status, count
251 status = getline line <bytecodeFile;
252 if (status == 0) break;
253 if (status < 0) {
269 status = defineOpcode(line);
271 status = defineFormat(line);
273 status = -1;
276 if (status != 0) {
/dalvik/vm/oo/
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) {
1783 newClass->status
4168 ClassStatus status = static_cast<ClassStatus>(value); local
[all...]
H A DObject.h369 ClassStatus status; member in struct:ClassObject
752 return clazz->status >= CLASS_RESOLVED;
756 return clazz->status >= CLASS_VERIFIED;
H A DClass.h124 return (clazz->status == CLASS_INITIALIZED);
/dalvik/vm/alloc/
H A DVisitInlines.h96 if (asClass->status > CLASS_IDX) {
102 if (asClass->status > CLASS_IDX) {
/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/interp/
H A DStack.cpp361 if (self->status != THREAD_RUNNING) {
362 ALOGW("threadid=%d: status=%d on call to %s.%s -",
363 self->threadId, self->status,
1244 * warning: wait status not stable, even in suspend
1246 if (thread->status == THREAD_WAIT ||
1247 thread->status == THREAD_TIMED_WAIT)
1261 } else if (thread->status == THREAD_MONITOR) {
H A DInterp.cpp1938 if (method->clazz->status < CLASS_INITIALIZING ||
1939 method->clazz->status == CLASS_ERROR)
1942 method->clazz->descriptor, method->clazz->status);
/dalvik/vm/mterp/common/
H A Dasm-constants.h247 MTERP_OFFSET(offClassObject_status, ClassObject, status, 44)

Completed in 404 milliseconds

12