Searched refs:tid (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_server_Watchdog.cpp30 static void dumpOneStack(int tid, int outFd) { argument
33 snprintf(buf, sizeof(buf), "/proc/%d/stack", tid);
50 LOGE("Unable to open stack of tid %d : %d (%s)", tid, errno, strerror(errno));
81 int tid = atoi(ent->d_name); local
82 if (tid > 0 && tid <= 65535) {
84 dumpOneStack(tid, outFd);
H A Dandroid_util_Process.cpp276 LOGV("Process.setCanSelfBackground(%d) : tid=%d", bgOk, androidGetTid());
323 jint tid = android_os_Process_myTid(env, clazz); local
324 android_os_Process_setThreadPriority(env, clazz, tid, pri);
/frameworks/base/tools/preload/
H A DRecord.java56 final int tid; field in class:Record
100 tid = Integer.parseInt(parts[2]);
H A DRoot.java84 o = process.endOperation(record.tid, record.className,
93 process.startOperation(record.tid, loadedClass, record.time,
98 process.startOperation(record.tid, loadedClass, record.time,
/frameworks/base/libs/utils/
H A DThreads.cpp307 int androidSetThreadSchedulingGroup(pid_t tid, int grp) argument
316 if (set_sched_policy(tid, (grp == ANDROID_TGROUP_BG_NONINTERACT) ?
326 int androidSetThreadPriority(pid_t tid, int pri) argument
336 rc = set_sched_policy(tid, SP_BACKGROUND);
337 } else if (getpriority(PRIO_PROCESS, tid) >= ANDROID_PRIORITY_BACKGROUND) {
338 rc = set_sched_policy(tid, SP_FOREGROUND);
346 if (setpriority(PRIO_PROCESS, tid, pri) < 0) {
486 //printf("+++ wait: incr waitersCount to %d (tid=%ld)\n",
502 //printf("+++ wait: awake (tid=%ld)\n", getThreadId());
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h64 mutable GLuint tid; member in struct:android::BootAnimation::Animation::Frame
H A DBootAnimation.cpp454 glBindTexture(GL_TEXTURE_2D, frame.tid);
457 glGenTextures(1, &frame.tid);
458 glBindTexture(GL_TEXTURE_2D, frame.tid);
496 glDeleteTextures(1, &frame.tid);
/frameworks/base/core/java/android/os/
H A DProcess.java621 * @param tid The identifier of the thread/process to change.
626 * <var>tid</var> does not exist.
631 public static final native void setThreadPriority(int tid, int priority) argument
646 * @param tid The indentifier of the thread/process to change.
650 * <var>tid</var> does not exist.
655 public static final native void setThreadGroup(int tid, int group) argument
664 * <var>tid</var> does not exist.
680 * <var>tid</var> does not exist.
693 * @param tid The identifier of the thread/process to change.
700 * <var>tid</va
702 getThreadPriority(int tid) argument
[all...]
/frameworks/base/include/utils/
H A Dthreads.h137 extern int androidSetThreadSchedulingGroup(pid_t tid, int grp);
143 extern int androidSetThreadPriority(pid_t tid, int prio);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipHelper.java239 ClientTransaction tid = responseEvent.getClientTransaction();
241 responseEvent.getResponse(), tid, mSipProvider, 5);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp3742 int tid = Res_GETTYPE(resID); local
3743 if (tid < 0 || tid >= (int)p->getOrderedTypes().size()) {
3747 sp<Type> t = p->getOrderedTypes()[tid];

Completed in 170 milliseconds