Searched refs:priority (Results 1 - 6 of 6) sorted by relevance

/dalvik/libnativehelper/include/nativehelper/
H A DJNIHelp.h98 void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception);
146 inline void jniLogException(JNIEnv* env, int priority, const char* tag, argument
149 jniLogException(&env->functions, priority, tag, exception);
158 #define LOG_EX(env, priority, tag, ...) \
159 IF_LOG(priority, tag) jniLogException(env, ANDROID_##priority, tag, ##__VA_ARGS__)
/dalvik/vm/
H A DMisc.h68 void dvmPrintHexDumpEx(int priority, const char* tag, const void* vaddr,
105 int priority; member in struct:DebugOutputTarget::__anon32::__anon33
117 void dvmCreateLogOutputTarget(DebugOutputTarget* target, int priority,
H A DCommon.h145 #define LOG_PRI(priority, tag, ...) do { \
146 if (priority >= MIN_LOG_LEVEL) { \
H A DMisc.c45 * "priority" and "tag" determine the values passed to the log calls.
49 void dvmPrintHexDumpEx(int priority, const char* tag, const void* vaddr, argument
114 LOG_PRI(priority, tag, "%s", out);
139 void dvmCreateLogOutputTarget(DebugOutputTarget* target, int priority, argument
146 target->data.log.priority = priority;
182 LOG_PRI_VA(target->data.log.priority, target->data.log.tag,
600 * in a loop. The problem with sched_yield is that, for a high-priority
H A DThread.c362 dvmFindFieldOffset(gDvm.classJavaLangThread, "priority", "I");
1690 * Set the system thread priority according to the Thread object's
1691 * priority level. We don't usually need to do this, because both the
1695 * a "needs priority update" flag to avoid the redundant call.
1697 int priority = dvmGetFieldInt(self->threadObj, local
1699 dvmChangeThreadPriority(self, priority);
2060 * Call the (group, name, priority, daemon) constructor on the Thread.
2062 * provides values for priority and daemon (which are normally inherited
2515 * If the thread is running at below-normal priority, temporarily elevate
2528 LOGW("Unable to get priority fo
3507 int priority; // java.lang.Thread priority local
[all...]
/dalvik/libnativehelper/
H A DJNIHelp.c243 void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable exception) argument
258 __android_log_write(priority, tag, buffer);

Completed in 222 milliseconds