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

12

/frameworks/base/core/java/android/os/
H A DISchedulingPolicyService.aidl28 * Move thread tid into appropriate cgroup and assign it priority prio.
29 * The thread group leader of tid must be pid.
32 int requestPriority(int pid, int tid, int prio);
H A DProcess.java841 * @param tid the thread id
843 * This is same as what getpid(2) would return if called by tid.
846 public static final int getThreadGroupLeader(int tid) { argument
850 Process.readProcLines("/proc/" + tid + "/status", procStatusLabels, procStatusValues);
857 * @param tid The identifier of the thread/process to change.
862 * <var>tid</var> does not exist.
867 public static final native void setThreadPriority(int tid, int priority) argument
882 * @param tid The identifier of the thread to change.
886 * <var>tid</var> does not exist.
893 public static final native void setThreadGroup(int tid, in argument
955 getThreadPriority(int tid) argument
973 setThreadScheduler(int tid, int policy, int priority) argument
[all...]
/frameworks/av/services/audioflinger/
H A DSchedulingPolicyService.h22 // Request elevated priority for thread tid, whose thread group leader must be pid.
27 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous = false);
H A DSchedulingPolicyService.cpp31 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous) argument
50 ret = sps->requestPriority(pid, tid, prio, asynchronous);
H A DISchedulingPolicyService.h29 virtual int requestPriority(/*pid_t*/int32_t pid, /*pid_t*/int32_t tid,
H A DISchedulingPolicyService.cpp40 virtual int requestPriority(int32_t pid, int32_t tid, int32_t prio, bool asynchronous) argument
45 data.writeInt32(tid);
H A DThreads.h123 PrioConfigEventData(pid_t pid, pid_t tid, int32_t prio) : argument
124 mPid(pid), mTid(tid), mPrio(prio) {}
127 snprintf(buffer, size, "Prio event: pid %d, tid %d, prio %d\n", mPid, mTid, mPrio);
137 PrioConfigEvent(pid_t pid, pid_t tid, int32_t prio) : argument
139 mData = new PrioConfigEventData(pid, tid, prio);
258 void sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio);
538 pid_t tid,
1091 pid_t tid,
H A DThreads.cpp429 void AudioFlinger::ThreadBase::sendPrioConfigEvent_l(pid_t pid, pid_t tid, int32_t prio) argument
431 sp<ConfigEvent> configEvent = (ConfigEvent *)new PrioConfigEvent(pid, tid, prio);
482 ALOGW("Policy SCHED_FIFO priority %d is unavailable for pid %d tid %d; error %d",
1360 pid_t tid,
1383 (tid != -1) &&
1418 "hasFastMixer=%d tid=%d fastTrackAvailMask=%#x",
1421 channelMask, sampleRate, mSampleRate, hasFastMixer(), tid, mFastTrackAvailMask);
1534 if ((*flags & IAudioFlinger::TRACK_FAST) && (tid != -1)) {
1538 sendPrioConfigEvent_l(callingPid, tid, kPriorityAudioApp);
2913 pid_t tid local
1350 createTrack_l( const sp<AudioFlinger::Client>& client, audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *pFrameCount, const sp<IMemory>& sharedBuffer, int sessionId, IAudioFlinger::track_flags_t *flags, pid_t tid, int uid, status_t *status) argument
5054 pid_t tid = mFastCapture->getTid(); local
[all...]
H A DAudioFlinger.h110 pid_t tid,
122 pid_t tid,
/frameworks/base/services/core/java/com/android/server/os/
H A DSchedulingPolicyService.java40 public int requestPriority(int pid, int tid, int prio) { argument
41 //Log.i(TAG, "requestPriority(pid=" + pid + ", tid=" + tid + ", prio=" + prio + ")");
46 // we can't trust the tid. No need to explicitly check for pid == 0 || tid == 0,
49 prio > PRIORITY_MAX || Process.getThreadGroupLeader(tid) != pid) {
54 Process.setThreadGroup(tid, Binder.getCallingPid() == pid ?
57 Process.setThreadScheduler(tid, Process.SCHED_FIFO, prio);
/frameworks/base/core/jni/
H A Dandroid_server_Watchdog.cpp31 static void dumpOneStack(int tid, int outFd) { argument
34 snprintf(buf, sizeof(buf), "/proc/%d/stack", tid);
51 ALOGE("Unable to open stack of tid %d : %d (%s)", tid, errno, strerror(errno));
83 int tid = atoi(ent->d_name); local
84 if (tid > 0 && tid <= 65535) {
86 dumpOneStack(tid, outFd);
H A Dandroid_util_Process.cpp164 void android_os_Process_setThreadGroup(JNIEnv* env, jobject clazz, int tid, jint grp) argument
166 ALOGV("%s tid=%d grp=%" PRId32, __func__, tid, grp);
168 int res = set_sched_policy(tid, sp);
274 ALOGV("Process.setCanSelfBackground(%d) : tid=%d", bgOk, androidGetTid());
288 jint tid, jint policy, jint pri)
293 int rc = sched_setscheduler(tid, policy, &param);
287 android_os_Process_setThreadScheduler(JNIEnv* env, jclass clazz, jint tid, jint policy, jint pri) argument
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h62 void show_wchan(int pid, int tid, const char *name);
H A Dutils.c138 int tid; local
143 if (!(tid = atoi(de->d_name))) {
147 if (tid == pid)
150 sprintf(commpath,"/proc/%d/comm", tid);
164 func(pid, tid, comm);
174 void show_wchan(int pid, int tid, const char *name) { argument
182 sprintf(path, "/proc/%d/wchan", tid);
194 pid == tid ? 0 : 3, "", name);
196 printf("%-7d %-32s %s\n", tid, name_buffer, buffer);
/frameworks/base/tools/preload/
H A DRecord.java86 final int tid; field in class:Record
130 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/usb/tests/accessorytest/
H A Daudio.c191 pthread_t tid; local
218 pthread_create(&tid, NULL, capture_thread, NULL);
219 pthread_create(&tid, NULL, play_thread, pcm);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifParser.java590 short tid = tag.getTagId();
592 if (tid == TAG_EXIF_IFD && checkAllowed(ifd, ExifInterface.TAG_EXIF_IFD)) {
597 } else if (tid == TAG_GPS_IFD && checkAllowed(ifd, ExifInterface.TAG_GPS_IFD)) {
601 } else if (tid == TAG_INTEROPERABILITY_IFD
606 } else if (tid == TAG_JPEG_INTERCHANGE_FORMAT
611 } else if (tid == TAG_JPEG_INTERCHANGE_FORMAT_LENGTH
616 } else if (tid == TAG_STRIP_OFFSETS && checkAllowed(ifd, ExifInterface.TAG_STRIP_OFFSETS)) {
630 } else if (tid == TAG_STRIP_BYTE_COUNTS
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h64 mutable GLuint tid; member in struct:android::BootAnimation::Animation::Frame
H A DBootAnimation.cpp610 glBindTexture(GL_TEXTURE_2D, frame.tid);
613 glGenTextures(1, &frame.tid);
614 glBindTexture(GL_TEXTURE_2D, frame.tid);
665 glDeleteTextures(1, &frame.tid);
/frameworks/av/include/media/
H A DIAudioFlinger.h75 pid_t tid, // -1 means unused, otherwise must be valid non-0
90 pid_t tid, // -1 means unused, otherwise must be valid non-0
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp103 pid_t tid,
127 data.writeInt32((int32_t) tid);
177 pid_t tid,
195 data.writeInt32((int32_t) tid);
922 pid_t tid = (pid_t) data.readInt32(); local
934 channelMask, &frameCount, &flags, buffer, output, tid,
953 pid_t tid = (pid_t) data.readInt32(); local
960 sampleRate, format, channelMask, &frameCount, &flags, tid, &sessionId,
94 createTrack( audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *pFrameCount, track_flags_t *flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t tid, int *sessionId, int clientUid, status_t *status) argument
170 openRecord( audio_io_handle_t input, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *pFrameCount, track_flags_t *flags, pid_t tid, int *sessionId, size_t *notificationFrames, sp<IMemory>& cblk, sp<IMemory>& buffers, status_t *status) argument
H A DAudioRecord.cpp446 pid_t tid = -1; local
450 tid = mAudioRecordThread->getTid();
483 tid,
H A DAudioTrack.cpp1086 pid_t tid = -1; local
1090 tid = mAudioTrackThread->getTid();
1115 tid,
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipHelper.java260 ClientTransaction tid = responseEvent.getClientTransaction();
262 responseEvent.getResponse(), tid, mSipProvider, 5);

Completed in 781 milliseconds

12