Searched defs:priority (Results 1 - 25 of 402) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerImpl.java2925 * NEEDSDOC @param priority
2927 public void runTransformThread(int priority) argument
2931 Thread t = ThreadControllerWrapper.runThread(this, priority);
2937 * Similar with runTransformThread(), but no priority is set
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DThreadControllerWrapper.java33 public static Thread runThread(Runnable runnable, int priority) argument
35 return m_tpool.run(runnable, priority);
61 * @param priority if >0 the task will run with the given priority
66 public Thread run(Runnable task, int priority) argument
73 // if( priority > 0 )
74 // t.setPriority( priority );
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_api.c922 ** Description Sets the transmission priority for a channel.
929 BOOLEAN L2CA_SetAclPriority (BD_ADDR bd_addr, UINT8 priority) argument
931 L2CAP_TRACE_API ("L2CA_SetAclPriority() bdaddr: %02x%02x%02x%02x%04x, priority:%d",
933 bd_addr[3], (bd_addr[4] << 8) + bd_addr[5], priority);
935 return (l2cu_set_acl_priority(bd_addr, priority, FALSE));
1021 ** Description Sets the transmission priority for a channel.
1026 BOOLEAN L2CA_SetTxPriority (UINT16 cid, tL2CAP_CHNL_PRIORITY priority) argument
1030 L2CAP_TRACE_API ("L2CA_SetTxPriority() CID: 0x%04x, priority:%d", cid, priority);
1039 /* it will update the order of CCB in LCB by priority an
[all...]
H A Dl2c_utils.c1234 ** Description queue CCB by priority. The first CCB is highest priority and
1257 L2CAP_TRACE_DEBUG ("l2cu_enqueue_ccb CID: 0x%04x priority: %d",
1272 /* Insert new ccb at the end of the same priority. Lower number, higher priority */
1306 /* if this is the first channel in this priority group */
1313 /* Initialize quota of this priority group based on its priority */
1354 /* decrease number of channels in this priority group */
1357 /* if it was the last channel in the priority grou
1416 l2cu_change_pri_ccb(tL2C_CCB *p_ccb, tL2CAP_CHNL_PRIORITY priority) argument
2496 l2cu_set_acl_priority(BD_ADDR bd_addr, UINT8 priority, BOOLEAN reset_after_rs) argument
[all...]
/external/bluetooth/bluedroid/stack/rfcomm/
H A Drfc_int.h94 UINT8 priority; member in struct:__anon1692::__anon1693::__anon1694
/external/bluetooth/bluedroid/utils/src/
H A Dbt_utils.c115 ** Description Raise task priority for A2DP streaming
123 int priority = ANDROID_PRIORITY_AUDIO; local
140 // always use urgent priority for HCI worker thread until we can adjust
145 priority = ANDROID_PRIORITY_URGENT_AUDIO;
147 if (setpriority(PRIO_PROCESS, tid, priority) < 0) {
148 ALOGW("failed to change priority tid: %d to %d", tid, priority);
156 ** Description increase the a2dp consumer task priority temporarily when start
158 ** the a2dp consumer task priority when stop audio playing.
164 int priority local
[all...]
/external/chromium_org/athena/screen/
H A Dscreen_manager_impl.cc279 // A functor to find a container that has the higher priority.
281 HigherPriorityFinder(int p) : priority(p) {}
284 priority;
286 int priority; member in struct:athena::__anon2148::HigherPriorityFinder
291 PriorityMatcher(int p) : priority(p) {}
294 priority;
296 int priority; member in struct:athena::__anon2148::PriorityMatcher
314 << "The container with the priority "
367 int priority)
371 z_order_priority(priority) {
366 ContainerParams(const std::string& n, int priority) argument
[all...]
/external/chromium_org/base/process/
H A Dprocess_linux.cc23 // We are more aggressive in our lowering of background process priority
105 int priority = background ? kBackgroundPriority : kForegroundPriority; local
106 int result = setpriority(PRIO_PROCESS, process_, priority);
113 // We won't be able to raise the priority if we don't have the right rlimit.
/external/chromium_org/base/threading/
H A Dplatform_thread_android.cc22 int ThreadNiceValue(ThreadPriority priority) { argument
41 switch (priority) {
51 NOTREACHED() << "Unknown priority.";
59 ThreadPriority priority) {
60 // On Android, we set the Audio priority through JNI as Audio priority
62 if (priority == kThreadPriority_RealtimeAudio) {
69 // priority. however, on linux it will only change the target thread's
70 // priority. see the bugs section in
75 int kNiceSetting = ThreadNiceValue(priority);
58 SetThreadPriority(PlatformThreadHandle handle, ThreadPriority priority) argument
[all...]
H A Dplatform_thread_freebsd.cc29 int ThreadNiceValue(ThreadPriority priority) { argument
30 switch (priority) {
40 NOTREACHED() << "Unknown priority.";
64 ThreadPriority priority) {
66 if (priority == kThreadPriority_RealtimeAudio) {
69 // Got real time priority, no need to set nice level.
74 // setpriority(2) will set a thread's priority if it is passed a tid as
76 // process. Setting this priority will only succeed if the user has been
79 const int kNiceSetting = ThreadNiceValue(priority);
63 SetThreadPriority(PlatformThreadHandle handle, ThreadPriority priority) argument
H A Dplatform_thread_linux.cc30 int ThreadNiceValue(ThreadPriority priority) { argument
31 switch (priority) {
41 NOTREACHED() << "Unknown priority.";
75 ThreadPriority priority) {
77 if (priority == kThreadPriority_RealtimeAudio) {
80 // Got real time priority, no need to set nice level.
86 // priority. however, on linux it will only change the target thread's
87 // priority. see the bugs section in
92 const int kNiceSetting = ThreadNiceValue(priority);
74 SetThreadPriority(PlatformThreadHandle handle, ThreadPriority priority) argument
H A Dplatform_thread_posix.cc45 priority(kThreadPriority_Normal),
52 ThreadPriority priority; member in struct:base::__anon2547::ThreadParams
65 if (thread_params->priority != kThreadPriority_Normal) {
67 thread_params->priority);
93 ThreadPriority priority) {
116 params.priority = priority;
213 ThreadPriority priority) {
216 delegate, thread_handle, priority);
90 CreateThread(size_t stack_size, bool joinable, PlatformThread::Delegate* delegate, PlatformThreadHandle* thread_handle, ThreadPriority priority) argument
211 CreateWithPriority(size_t stack_size, Delegate* delegate, PlatformThreadHandle* thread_handle, ThreadPriority priority) argument
H A Dplatform_thread_win.cc196 ThreadPriority priority) {
199 SetThreadPriority(*thread_handle, priority);
237 ThreadPriority priority) {
238 switch (priority) {
246 NOTREACHED() << "Unknown priority.";
194 CreateWithPriority(size_t stack_size, Delegate* delegate, PlatformThreadHandle* thread_handle, ThreadPriority priority) argument
236 SetThreadPriority(PlatformThreadHandle handle, ThreadPriority priority) argument
H A Dsimple_thread.h109 void SetThreadPriority(ThreadPriority priority) { argument
110 PlatformThread::SetThreadPriority(thread_, priority);
H A Dthread.cc166 void Thread::SetPriority(ThreadPriority priority) { argument
170 PlatformThread::SetThreadPriority(thread_, priority);
/external/chromium_org/cc/layers/
H A Dpicture_layer_impl_unittest.cc344 // Update tiles with viewport for tile priority as (0, 0, 100, 100) and the
345 // identify transform for tile priority.
364 // Verify the viewport rect for tile priority is used in picture layer impl.
368 // Verify the viewport rect for tile priority is used in picture layer tiling.
378 // Update tiles with viewport for tile priority as (200, 200, 100, 100) in
379 // screen space and the transform for tile priority is translated and
380 // rotated. The actual viewport for tile priority used by PictureLayerImpl
411 // Verify the viewport rect for tile priority is used in PictureLayerImpl.
488 // Viewport and transform for tile priority are updated.
492 // Visible rect for tile priority retain
1499 TilePriority priority; local
2637 TilePriority priority = tile->priority(PENDING_TREE); local
2680 TilePriority priority = tile->priority(PENDING_TREE); local
2722 TilePriority priority = tile->priority(PENDING_TREE); local
2823 TilePriority priority = tile->priority(PENDING_TREE); local
2866 TilePriority priority = tile->priority(PENDING_TREE); local
[all...]
H A Dtiled_layer.cc555 int priority = PriorityCalculator::LowestPriority(); local
557 priority = PriorityCalculator::PriorityFromDistance(
562 priority = PriorityCalculator::max_priority(
563 priority, PriorityCalculator::SmallAnimatedLayerMinPriority());
566 if (priority != PriorityCalculator::LowestPriority())
567 texture->set_request_priority(priority);
/external/chromium_org/cc/resources/
H A Dbitmap_raster_worker_pool.cc87 unsigned priority = kRasterTaskPriorityBase; local
123 InsertNodesForRasterTask(&graph_, task, task->dependencies(), priority++);
H A Dgpu_raster_worker_pool.cc124 unsigned priority = kRasterTaskPriorityBase; local
160 InsertNodesForRasterTask(&graph_, task, task->dependencies(), priority++);
H A Done_copy_raster_worker_pool.cc145 unsigned priority = kRasterTaskPriorityBase; local
183 InsertNodesForRasterTask(&graph_, task, task->dependencies(), priority++);
H A Dpicture_layer_tiling.cc58 // Reset priority as tile is ref-counted and might still be used
592 // Assign now priority to all visible tiles.
615 // Assign soon priority to skewport tiles.
634 TilePriority priority(resolution_, TilePriority::SOON, distance_to_visible);
635 tile->SetPriority(tree, priority);
638 // Assign eventually priority to interest rect tiles.
656 TilePriority priority(
658 tile->SetPriority(tree, priority);
661 // Upgrade the priority on border tiles to be SOON.
676 TilePriority priority(resolution
963 const TilePriority& priority = local
[all...]
H A Dpicture_layer_tiling_unittest.cc701 TilePriority priority = tile->priority(ACTIVE_TREE); local
705 EXPECT_EQ(TilePriority::NOW, priority.priority_bin);
706 EXPECT_FLOAT_EQ(0.f, priority.distance_to_visible);
709 EXPECT_EQ(TilePriority::SOON, priority.priority_bin);
712 EXPECT_EQ(TilePriority::EVENTUALLY, priority.priority_bin);
713 EXPECT_GT(priority.distance_to_visible, 0.f);
733 TilePriority priority = tiling->TileAt(5, 1)->priority(ACTIVE_TREE); local
734 EXPECT_FLOAT_EQ(68.f, priority
769 TilePriority priority = tile->priority(ACTIVE_TREE); local
1519 TilePriority priority = tiling->TileAt(0, 0)->priority(ACTIVE_TREE); local
1574 TilePriority priority = tiling->TileAt(0, 0)->priority(ACTIVE_TREE); local
1639 TilePriority priority = tiling->TileAt(0, 0)->priority(ACTIVE_TREE); local
1698 TilePriority priority = tiling->TileAt(0, 0)->priority(ACTIVE_TREE); local
1783 TilePriority priority = tiling->TileAt(0, 0)->priority(ACTIVE_TREE); local
1876 TilePriority priority = tiling->TileAt(0, 0)->priority(ACTIVE_TREE); local
1945 TilePriority priority = tiling->TileAt(0, 0)->priority(ACTIVE_TREE); local
2023 TilePriority priority = tiling->TileAt(0, 0)->priority(ACTIVE_TREE); local
[all...]
H A Dpixel_buffer_raster_worker_pool.cc276 // of top priority tasks that are scheduled.
520 unsigned priority = kRasterTaskPriorityBase; local
587 InsertNodesForRasterTask(&graph_, task, task->dependencies(), priority++);
698 // no longer being of high enough priority to fit in our throttled
H A Dprioritized_resource.h49 // Set priority for the requested texture.
50 void set_request_priority(int priority) { priority_ = priority; } argument
93 // been allowed given its priority.

Completed in 4489 milliseconds

1234567891011>>