HomeSort by relevance Sort by last modified time
    Searched full:priority (Results 126 - 150 of 3742) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 113 * @param priority
114 * priority of the service
119 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final String text) {
120 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text);
136 * @param priority
137 * priority of the service
142 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final String text) {
143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text);
157 * @param priority
158 * priority of the servic
    [all...]
  /external/chromium_org/cc/resources/
prioritized_tile_set_unittest.cc 124 for (int priority = 0; priority < 4; ++priority) {
127 tile->SetPriority(ACTIVE_TREE, priorities[priority]);
128 tile->SetPriority(PENDING_TREE, priorities[priority]);
156 for (int priority = 0; priority < 4; ++priority) {
159 tile->SetPriority(ACTIVE_TREE, priorities[priority]);
160 tile->SetPriority(PENDING_TREE, priorities[priority]);
    [all...]
  /external/chromium/base/
process_linux.cc 28 // We are more aggressive in our lowering of background process priority
67 // With cgroups there's no real notion of priority as an int, but this
92 // We won't be able to raise the priority if we don't have the right rlimit.
102 // Couldn't get priority.
105 // {set,get}priority values are in the range -20 to 19, where -1 is higher
106 // priority than 0. But rlimit's are in the range from 0 to 39 where
109 // User is not allowed to raise the priority back to where it is now.
116 LOG(ERROR) << "Failed to lower priority, errno: " << errno;
  /external/chromium_org/net/cookies/
parsed_cookie_unittest.cc 72 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, pc.Priority());
76 ParsedCookie pc("BLAHHH; Path=/; sECuRe; httpONLY; pRIoRitY=hIgH");
84 EXPECT_EQ(COOKIE_PRIORITY_HIGH, pc.Priority());
96 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, pc.Priority());
105 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, pc.Priority());
114 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, pc.Priority());
125 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, pc.Priority());
138 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, pc.Priority());
152 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, pc.Priority());
167 EXPECT_EQ(COOKIE_PRIORITY_DEFAULT, pc.Priority());
    [all...]
  /external/chromium_org/net/quic/
quic_data_stream.h 61 // By default, this is the same as priority(), however it allows streams
62 // to temporarily alter effective priority. For example if a SPDY stream has
64 // priority.
99 // Sets priority_ to priority. This should only be called before bytes are
101 void set_priority(QuicPriority priority);
104 QuicPriority priority() const { return priority_; } function in class:net::QuicDataStream
120 // The priority of the stream, once parsed.
132 // True if the priority has been read, false otherwise.
  /external/clang/test/SemaObjC/
method-lookup.m 17 - (NSInteger)priority;
29 [(id)item setPriority:[item priority] / [PBXCodeAssistant factorForRecentCompletion:[item name]]];
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategory.java 51 * @return the system {@link PropertyCategory} with given priority.
53 public static final PropertyCategory system(int priority) {
54 return new PropertyCategory(SYSTEM_BASE + priority, "SYSTEM:" + priority);
58 * @return the system {@link PropertyCategory} with priority
80 private PropertyCategory(int priority, String string) {
81 m_priority = priority;
154 * @return the priority of this category.
  /external/lzma/CPP/Windows/
Thread.h 32 bool SetPriority(int priority) { return BOOLToBool(::SetThreadPriority(thread, priority)); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_eql.h 45 long priority; member in struct:slave_config
50 long priority; member in struct:slaving_request
nfs_fs.h 24 #define FLUSH_LOWPRI 8 /* low priority background flush */
25 #define FLUSH_HIGHPRI 16 /* high priority memory reclaim flush */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_eql.h 45 long priority; member in struct:slave_config
50 long priority; member in struct:slaving_request
nfs_fs.h 24 #define FLUSH_LOWPRI 8 /* low priority background flush */
25 #define FLUSH_HIGHPRI 16 /* high priority memory reclaim flush */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_eql.h 45 long priority; member in struct:slave_config
50 long priority; member in struct:slaving_request
nfs_fs.h 24 #define FLUSH_LOWPRI 8 /* low priority background flush */
25 #define FLUSH_HIGHPRI 16 /* high priority memory reclaim flush */
  /external/chromium/net/base/
request_priority.h 14 HIGHEST = 0, // 0 must be the highest priority.
  /external/chromium_org/net/http/
http_stream_factory_impl_request_unittest.cc 64 // Make sure that Request passes on its priority updates to its jobs.
87 EXPECT_EQ(DEFAULT_PRIORITY, job->priority());
90 EXPECT_EQ(MEDIUM, job->priority());
96 EXPECT_EQ(IDLE, job->priority());
  /frameworks/base/core/java/android/net/
NetworkConfig.java 44 * higher number == higher priority when turning off connections
46 public int priority; field in class:NetworkConfig
63 * [associated radio-type],[priority],[dependencyMet]
70 priority = Integer.parseInt(fragments[3]);
  /system/core/include/system/
thread_defs.h 33 * A thread priority should be chosen inverse-proportionally to
35 * a thread will do, the less favorable priority it should get so that
46 /* most threads run at normal priority */
52 /* the main UI thread has a slightly more favorable priority */
  /external/chromium_org/net/base/
prioritized_dispatcher_unittest.cc 20 // We rely on the priority enum values being sequential having starting at 0,
31 typedef PrioritizedDispatcher::Priority Priority;
39 Priority priority,
43 priority_(priority),
73 EXPECT_EQ(priority_, handle_.priority());
79 void ChangePriority(Priority priority) {
85 handle_ = dispatcher_->ChangePriority(handle_, priority);
    [all...]
  /external/chromium_org/net/url_request/
url_request_netlog_params.cc 16 RequestPriority priority,
23 dict->SetString("priority", RequestPriorityToString(priority));
  /frameworks/volley/tests/src/com/android/volley/
RequestQueueTest.java 19 import com.android.volley.Request.Priority;
54 Request.Priority[] allPriorities = Request.Priority.values();
60 Request.Priority priority = allPriorities[random.nextInt(allPriorities.length)]; local
62 request.setPriority(priority);
136 private Priority mLastPriority = Priority.IMMEDIATE;
155 Priority thisPriority = request.getPriority();
160 // Should never experience a higher priority after a lower priorit
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
PriorityThreadFactory.java 25 * A thread factory that creates threads with a given thread priority.
33 public PriorityThreadFactory(String name, int priority) {
35 mPriority = priority;
  /developers/build/prebuilts/gradle/ActivityInstrumentation/ActivityInstrumentationSample/src/main/java/com/example/android/common/logger/
Log.java 58 * @param priority Log level of the data being logged. Verbose, Error, etc.
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
74 * @param priority Log level of the data being logged. Verbose, Error, etc.
78 public static void println(int priority, String tag, String msg) {
79 println(priority, tag, msg, null);
83 * Prints a message at VERBOSE priority.
95 * Prints a message at VERBOSE priority.
106 * Prints a message at DEBUG priority.
118 * Prints a message at DEBUG priority
    [all...]
LogWrapper.java 45 * @param priority Log level of the data being logged. Verbose, Error, etc.
52 public void println(int priority, String tag, String msg, Throwable tr) {
67 // For instance, if priority were Log.VERBOSE, this would be the same as Log.v(tag, useMsg)
68 Log.println(priority, tag, useMsg);
72 mNext.println(priority, tag, msg, tr);
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/AdvancedImmersiveModeSample/src/main/java/com/example/android/common/logger/
Log.java 58 * @param priority Log level of the data being logged. Verbose, Error, etc.
64 public static void println(int priority, String tag, String msg, Throwable tr) {
66 mLogNode.println(priority, tag, msg, tr);
74 * @param priority Log level of the data being logged. Verbose, Error, etc.
78 public static void println(int priority, String tag, String msg) {
79 println(priority, tag, msg, null);
83 * Prints a message at VERBOSE priority.
95 * Prints a message at VERBOSE priority.
106 * Prints a message at DEBUG priority.
118 * Prints a message at DEBUG priority
    [all...]

Completed in 984 milliseconds

1 2 3 4 56 7 8 91011>>