Searched refs:tid (Results 26 - 34 of 34) sorted by relevance

12

/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp586 pid_t tid,
682 channelMask, frameCount, sharedBuffer, lSessionId, flags, tid, clientUid, &lStatus);
1477 pid_t tid,
1512 if (!recordingAllowed(opPackageName, tid, clientUid)) {
1567 clientUid, flags, tid, &lStatus);
576 createTrack( audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t *frameCount, audio_output_flags_t *flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t pid, pid_t tid, audio_session_t *sessionId, int clientUid, status_t *status) argument
1468 openRecord( audio_io_handle_t input, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, const String16& opPackageName, size_t *frameCount, audio_input_flags_t *flags, pid_t pid, pid_t tid, int clientUid, audio_session_t *sessionId, size_t *notificationFrames, sp<IMemory>& cblk, sp<IMemory>& buffers, status_t *status) argument
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp1377 pid_t tid = -1; local
1380 tid = mAudioTrackThread->getTid();
1396 tid,
/frameworks/base/core/java/android/app/
H A DActivityManager.java3678 * To reset the VR thread for an application, a tid of 0 can be passed.
3681 * @param tid tid of the VR thread
3683 public static void setVrThread(int tid) { argument
3685 ActivityManagerNative.getDefault().setVrThread(tid);
H A DIActivityManager.java661 public void setVrThread(int tid) throws RemoteException; argument
662 public void setRenderThread(int tid) throws RemoteException; argument
H A DActivityManagerNative.java3001 final int tid = data.readInt();
3002 setVrThread(tid);
3008 final int tid = data.readInt();
3009 setRenderThread(tid);
7064 public void setVrThread(int tid) argument
7069 data.writeInt(tid);
7077 public void setRenderThread(int tid) argument
7082 data.writeInt(tid);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscriptionController.java100 int tid = android.os.Process.myTid();
102 mLog.add(mNow.format("%m-%d %H:%M:%S") + " pid=" + pid + " tid=" + tid + " " + msg);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp4359 int tid = Res_GETTYPE(resID); local
4360 if (tid < 0 || tid >= (int)p->getOrderedTypes().size()) {
4364 sp<Type> t = p->getOrderedTypes()[tid];
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java666 int tid = Process.myTid();
667 int prevPriority = Process.getThreadPriority(tid);
671 Process.setThreadPriority(tid, -2);
6336 // Reset render thread tid if it was already set, so new process can set it again.
12673 public void setVrThread(int tid) { argument
12684 if (proc != null && mInVrMode && tid >= 0) {
12685 // ensure the tid belongs to the process
12686 if (!Process.isThreadInProcess(pid, tid)) {
12702 proc.vrThreadTid = tid;
12704 // promote to FIFO now if the tid i
12721 setRenderThread(int tid) argument
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp6634 pid_t tid = gettid(); local
6635 int prevPriority = androidGetThreadPriority(tid);
6636 androidSetThreadPriority(tid, ANDROID_PRIORITY_FOREGROUND);
6638 androidSetThreadPriority(tid, prevPriority);

Completed in 1369 milliseconds

12