/external/iproute2/etc/iproute2/ |
rt_dsfield | 8 0x20 priority
|
/frameworks/base/services/common_time/ |
common_time_config_service.cpp | 38 status_t CommonTimeConfigService::getMasterElectionPriority(uint8_t *priority) { 39 return mTimeServer.getMasterElectionPriority(priority); 42 status_t CommonTimeConfigService::setMasterElectionPriority(uint8_t priority) { 43 return mTimeServer.setMasterElectionPriority(priority);
|
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/ |
MultimediaMessagePdu.java | 115 * Get X-Mms-Priority value. 120 return mPduHeaders.getOctet(PduHeaders.PRIORITY); 124 * Set X-Mms-Priority value. 130 mPduHeaders.setOctet(value, PduHeaders.PRIORITY);
|
/hardware/invensense/mlsdk/platform/linux/ |
log_linux.c | 45 int _MLPrintLog (int priority, const char* tag, const char* fmt, ...) 51 result = _MLPrintVaLog(priority,tag,fmt,ap); 57 int _MLPrintVaLog(int priority, const char* tag, const char* fmt, va_list args) 68 switch (priority) {
|
/frameworks/base/docs/html/tools/debugging/ |
debugging-log.jd | 138 <p>Every Android log message has a <em>tag</em> and a <em>priority</em> associated with it.</p> 144 <li>The priority is one of the following character values, ordered from lowest to highest 145 priority:</li> 149 <li><code>V</code> — Verbose (lowest priority)</li> 161 <li><code>S</code> — Silent (highest priority, on which nothing is ever printed)</li> 168 <code><priority>/<tag></code>.</p> 170 <p>Here's an example of logcat output that shows that the message relates to priority level "I" 177 expressions</em>. Filter expressions let you indicate to the system the tags-priority 181 <p>A filter expression follows this format <code>tag:priority ...</code>, where <code>tag</code> 182 indicates the tag of interest and <code>priority</code> indicates the <em>minimum</em> level o [all...] |
/external/clang/include/clang/Sema/ |
CodeCompleteConsumer.h | 29 /// \brief Default priority values for code-completion results based 32 /// \brief Priority for the next initialization in a constructor initializer 35 /// \brief Priority for an enumeration constant inside a switch whose 38 /// \brief Priority for a send-to-super completion. 40 /// \brief Priority for a declaration that is in the local scope. 42 /// \brief Priority for a member declaration found from the current 45 /// \brief Priority for a language keyword (that isn't any of the other 48 /// \brief Priority for a code pattern. 50 /// \brief Priority for a non-type declaration. 52 /// \brief Priority for a type [all...] |
/frameworks/base/media/java/android/media/ |
SoundPool.java | 49 * on priority and then by age within that priority. Limiting the maximum 66 * <p>Priority runs low to high, i.e. higher numbers are higher priority. 67 * Priority is used when a call to play() would cause the number of active 70 * the lowest priority stream. If there are multiple streams with the same 71 * low priority, it will choose the oldest stream to stop. In the case 72 * where the priority of the new stream is lower than all the active 94 * is stopped to allow a higher priority stream to play, the stream is no 150 * @param priority the priority of the sound. Currently has no effect. Us [all...] |
/external/v8/benchmarks/ |
richards.js | 122 * @param {int} priority the task's priority 126 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 127 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 133 * @param {int} priority the task's priority 136 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 137 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 143 * @param {int} priority the task's priority [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-richards.js | 117 * @param {int} priority the task's priority 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 128 * @param {int} priority the task's priority 131 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 132 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 138 * @param {int} priority the task's priority [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-richards.js | 117 * @param {int} priority the task's priority 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 128 * @param {int} priority the task's priority 131 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 132 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 138 * @param {int} priority the task's priority [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-richards.js | 117 * @param {int} priority the task's priority 121 Scheduler.prototype.addIdleTask = function (id, priority, queue, count) { 122 this.addRunningTask(id, priority, queue, new IdleTask(this, 1, count)); 128 * @param {int} priority the task's priority 131 Scheduler.prototype.addWorkerTask = function (id, priority, queue) { 132 this.addTask(id, priority, queue, new WorkerTask(this, ID_HANDLER_A, 0)); 138 * @param {int} priority the task's priority [all...] |
/hardware/invensense/libsensors_iio/software/core/driver/include/ |
log.h | 281 #define MPL_LOG(priority, tag, fmt, ...) \ 282 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__) 286 * Log macro that allows you to specify a number for the priority. 290 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 291 ALOG(priority, tag, fmt, ##__VA_ARGS__) 293 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 294 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__) 296 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 297 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__) 306 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) [all...] |
/hardware/invensense/mlsdk/platform/include/ |
log.h | 277 #define MPL_LOG(priority, tag, fmt, ...) \ 278 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__) 282 * Log macro that allows you to specify a number for the priority. 286 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 287 ALOG(priority, tag, fmt, ##__VA_ARGS__) 289 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 290 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__) 292 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ 293 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__) 302 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) [all...] |
/development/ndk/platforms/android-3/include/linux/ |
ipv6.h | 82 __u8 priority:4, member in struct:ipv6hdr 86 priority:4;
|
/development/ndk/sources/android/libportable/arch-mips/ |
poll.c | 23 * but now also the ability to poll for high priority input and output. Though 24 * the normal priority is equivalent to the original I/O it was assigned new bits: 29 * both POLLOUT and POLLWRNORM when data can be written; so the new priority BAND bits 33 * The DECNet Protocol can set the poll in priority flag, POLLRDBAND. 34 * ATM as well as a whole bunch of other protocols can set the poll out priority flag, 47 * Both Normal and Priority flags can be mapped to MIPS flags (left to right below). 48 * Only the Priority poll out flag can be mapped back to portable because MIPS 67 * The loss of the high priority notice for the polling
|
/external/android-clat/ |
logging.c | 27 * prio - the log message priority 41 * prio - the log message priority
|
/external/chromium/base/ |
process_posix.cc | 55 // POSIX only allows lowering the priority of a process, so if we 57 // priority.
|
/external/chromium/chrome/browser/ |
oom_priority_manager.h | 19 // algorithm embedded here for priority in being killed upon OOM 24 // of priority. We round the idle times to the nearest few minutes
|
/external/chromium/net/http/ |
http_request_info.h | 50 // The priority level for this request. 51 RequestPriority priority; member in struct:net::HttpRequestInfo
|
/external/ipsec-tools/src/libipsec/ |
Makefile.am | 2 #bin_PROGRAMS = test-policy test-policy-priority 36 #test_policy_priority_SOURCES = test-policy-priority.c
|
/external/tcpdump/tests/ |
ospf-gmpls.new | 76 priority level 0: 0.000 Mbps 77 priority level 1: 0.000 Mbps 78 priority level 2: 0.000 Mbps 79 priority level 3: 0.000 Mbps 80 priority level 4: 0.000 Mbps 81 priority level 5: 0.000 Mbps 82 priority level 6: 0.000 Mbps 83 priority level 7: 0.000 Mbps
|
ospf-gmpls.out | 76 priority level 0: 0.000 Mbps 77 priority level 1: 0.000 Mbps 78 priority level 2: 0.000 Mbps 79 priority level 3: 0.000 Mbps 80 priority level 4: 0.000 Mbps 81 priority level 5: 0.000 Mbps 82 priority level 6: 0.000 Mbps 83 priority level 7: 0.000 Mbps
|
/external/valgrind/main/none/tests/ |
mq.c | 21 unsigned int priority; local 59 if ((len = mq_receive(mqdr, buffer, sizeof(buffer), &priority)) < 0)
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
TexturesGenerator.cpp | 74 bool deferrable = operation->priority() >= gDeferPriorityCutoff; 111 // Priority can change between when it was added and now 114 int currentPriority = current->priority(); 124 int nextPriority = next->priority(); 126 // Found a very high priority item, go ahead and just handle it now 131 // pick items preferrably by priority, or if equal, by order of 179 ALOGV("threadLoop, painting the request with priority %d", 180 currentOperation->priority());
|
/frameworks/av/libvideoeditor/osal/inc/ |
M4OSA_Thread_priv.h | 50 M4OSA_ThreadPriorityLevel priority; /* thread priority level */ member in struct:M4OSA_ThreadContext
|