Searched refs:status (Results 1 - 25 of 38) sorted by last modified time

12

/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/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 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 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 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 DInit.cpp1625 self->status = THREAD_NATIVE;
1650 self->status = THREAD_RUNNING;
H A DJni.cpp33 All JNI methods must start by changing their thread status to
38 With a rudimentary GC we should be able to skip the status change for
2846 * Change the status to indicate that we're out in native code. This
2893 /* (no need to change status back -- we have no status) */
2917 /* TODO: status change is probably unnecessary */
3523 std::string status = local
3527 if (!status.empty()) {
3530 ALOGW("CreateJavaVM failed: %s", status.c_str());
H A DSync.cpp295 /* Emit the sensitive thread ("main thread") status, 5 bytes. */
673 * Update thread status. If the GC wakes up, it'll ignore us, knowing
745 /* set self->status back to THREAD_RUNNING, and self-suspend if needed */
753 * The doc sayeth: "The interrupted status of the current thread is
1007 assert(self->status == THREAD_RUNNING);
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 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);
/dalvik/vm/alloc/
H A DMarkSweep.cpp288 if (asClass->status > CLASS_IDX) {
294 if (asClass->status > CLASS_IDX) {
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/compiler/
H A DCompiler.cpp246 dvmGetThreadStatusStr(thread->status),
/dalvik/vm/compiler/codegen/x86/
H A DLowerObject.cpp328 assert(classPtr->status & CLASS_INITIALIZED);
/dalvik/vm/compiler/template/out/
H A DCompilerTemplateAsm-armv5te-vfp.S934 fmstat @ export status flags
968 fmstat @ export status flags
1002 fmstat @ export status flags
1036 fmstat @ export status flags
/dalvik/vm/interp/
H A DInterp.cpp1938 if (method->clazz->status < CLASS_INITIALIZING ||
1939 method->clazz->status == CLASS_ERROR)
1942 method->clazz->descriptor, method->clazz->status);
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) {
/dalvik/vm/jdwp/
H A DJdwp.h223 const char* signature, int status);
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 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);
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...]
H A DJdwpMain.cpp318 if (dvmThreadSelf()->status != THREAD_VMWAIT) {
320 dvmThreadSelf()->status);

Completed in 442 milliseconds

12