HomeSort by relevance Sort by last modified time
    Searched full:priority (Results 1 - 25 of 1877) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/kernel-headers/original/linux/netfilter/
xt_CLASSIFY.h 5 u_int32_t priority; member in struct:xt_classify_target_info
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_CLASSIFY.h 5 u_int32_t priority; member in struct:xt_classify_target_info
  /external/iptables/include/linux/netfilter/
xt_CLASSIFY.h 7 __u32 priority; member in struct:xt_classify_target_info
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PriorityParser.java 33 * Parser for Priority header.
48 * @param priority the header to parse
50 public PriorityParser(String priority) {
51 super(priority);
64 * @return SIPHeader (Priority object)
71 Priority priority = new Priority(); local
73 headerName(TokenTypes.PRIORITY);
75 priority.setHeaderName(SIPHeaderNames.PRIORITY)
    [all...]
  /external/wpa_supplicant/wpa_gui/
wpamsg.h 19 : msg(_msg), priority(_priority)
25 int getPriority() const { return priority; }
30 int priority; member in class:WpaMsg
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
wpamsg.h 19 : msg(_msg), priority(_priority)
25 int getPriority() const { return priority; }
30 int priority; member in class:WpaMsg
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
wpamsg.h 19 : msg(_msg), priority(_priority)
25 int getPriority() const { return priority; }
30 int priority; member in class:WpaMsg
  /external/nist-sip/java/javax/sip/header/
PriorityHeader.java 6 String NAME = "Priority";
14 void setPriority(String priority) throws ParseException;
  /dalvik/vm/os/
os.h 20 * Raises the scheduling priority of the current thread. Returns the
21 * original priority if successful, or INT_MAX on failure.
29 * Sets the current thread scheduling priority. Used to undo the effects
37 * Changes the priority of a system thread to match that of the Thread object.
39 * We map a priority value from 1-10 to Linux "nice" values, where lower
40 * numbers indicate higher priority.
45 * Returns the thread priority for the current thread by querying the system.
  /external/chromium/net/url_request/
url_request_netlog_params.cc 15 RequestPriority priority)
19 priority_(priority) {
27 dict->SetInteger("priority", static_cast<int>(priority_));
  /external/nist-sip/java/gov/nist/javax/sip/header/
Priority.java 35 * the Priority header.
43 public class Priority extends SIPHeader implements PriorityHeader {
65 /** priority field
67 protected String priority; field in class:Priority
71 public Priority() {
80 return priority;
84 * get the priority value.
88 return priority;
92 * Set the priority member
99 + "Priority, setPriority(), the priority parameter is null")
    [all...]
  /external/clang/test/Index/
complete-type-factors.m 7 enum Priority {
13 enum Priority func2(int);
15 enum Priority test1(enum Priority priority, enum Color color, int integer) {
18 return priority;
26 + (void)method:(enum Color)color priority:(enum Priority)priority;
27 - (void)method:(enum Color)color priority:(enum Priority)priority
    [all...]
  /external/clang/test/Frontend/
warning-mapping-1.c 1 // Check that -w has higher priority than -Werror.
warning-mapping-2.c 1 // Check that -w has lower priority than -pedantic-errors.
  /external/iptables/extensions/
libxt_CLASSIFY.c 15 "--set-class MAJOR:MINOR Set skb->priority value (always hexadecimal!)\n");
40 if (CLASSIFY_string_to_priority(cb->arg, &clinfo->priority))
46 CLASSIFY_print_class(unsigned int priority, int numeric)
48 printf(" %x:%x", TC_H_MAJ(priority)>>16, TC_H_MIN(priority));
59 CLASSIFY_print_class(clinfo->priority, numeric);
69 TC_H_MAJ(clinfo->priority)>>16, TC_H_MIN(clinfo->priority));
  /frameworks/base/core/java/com/android/internal/os/
AndroidPrintStream.java 28 private final int priority; field in class:AndroidPrintStream
34 * @param priority from {@link android.util.Log}
37 public AndroidPrintStream(int priority, String tag) {
42 this.priority = priority;
47 Log.println(priority, tag, line);
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.mm 134 [self setProperty:@"azimuth" value:azimuth priority:@""];
144 [self setProperty:@"background" value:background priority:@""];
154 [self setProperty:@"background-attachment" value:backgroundAttachment priority:@""];
164 [self setProperty:@"background-color" value:backgroundColor priority:@""];
174 [self setProperty:@"background-image" value:backgroundImage priority:@""];
184 [self setProperty:@"background-position" value:backgroundPosition priority:@""];
194 [self setProperty:@"background-repeat" value:backgroundRepeat priority:@""];
204 [self setProperty:@"border" value:border priority:@""];
214 [self setProperty:@"border-collapse" value:borderCollapse priority:@""];
224 [self setProperty:@"border-color" value:borderColor priority:@""]
    [all...]
  /frameworks/base/core/java/android/util/
LogPrinter.java 29 * Create a new Printer that sends to the log with the given priority
32 * @param priority The desired log priority:
40 public LogPrinter(int priority, String tag) {
41 mPriority = priority;
50 public LogPrinter(int priority, String tag, int buffer) {
51 mPriority = priority;
  /external/bluetooth/bluez/src/
plugin.h 30 int priority; member in struct:bluetooth_plugin_desc
36 #define BLUETOOTH_PLUGIN_DEFINE(name, version, priority, init, exit) \
38 #name, version, priority, init, exit \
41 #define BLUETOOTH_PLUGIN_DEFINE(name, version, priority, init, exit) \
45 #name, version, priority, init, exit \
  /external/chromium/base/
process_win.cc 28 DWORD priority = GetPriority();
29 if (priority == 0)
31 return priority == BELOW_NORMAL_PRIORITY_CLASS;
37 DWORD priority = value ? BELOW_NORMAL_PRIORITY_CLASS : NORMAL_PRIORITY_CLASS;
38 return (SetPriorityClass(process_, priority) != 0);
  /external/chromium/net/spdy/
spdy_io_buffer.h 25 // |priority| is the priority of this buffer. Lower numbers are higher
26 // priority.
28 SpdyIOBuffer(IOBuffer* buffer, int size, int priority, SpdyStream* stream);
36 int priority() const { return priority_; } function in class:net::SpdyIOBuffer
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
PriorityThreadFactory.java 24 * A thread factory that creates threads with a given thread priority.
33 * @param priority The thread priority of the threads created by this factory.
36 public PriorityThreadFactory(int priority) {
37 mPriority = priority;
  /external/webkit/Source/WebCore/loader/
ResourceLoadScheduler.cpp 86 PassRefPtr<SubresourceLoader> ResourceLoadScheduler::scheduleSubresourceLoad(Frame* frame, SubresourceLoaderClient* client, const ResourceRequest& request, ResourceLoadPriority priority, SecurityCheckPolicy securityCheck,
91 scheduleLoad(loader.get(), priority);
108 void ResourceLoadScheduler::scheduleLoad(ResourceLoader* resourceLoader, ResourceLoadPriority priority)
111 ASSERT(priority != ResourceLoadPriorityUnresolved);
113 priority = ResourceLoadPriorityHighest;
119 host->schedule(resourceLoader, priority);
121 if (priority > ResourceLoadPriorityLow || !resourceLoader->url().protocolInHTTPFamily() || (priority == ResourceLoadPriorityLow && !hadRequests)) {
123 servePendingRequests(host, priority);
127 // Handle asynchronously so early low priority requests don't get scheduled before later high priority ones
    [all...]
  /libcore/luni/src/main/java/java/util/
PriorityQueue.java 24 * A PriorityQueue holds elements on a priority heap, which orders the elements
52 * Constructs a priority queue with an initial capacity of 11 and natural
60 * Constructs a priority queue with the specified capacity and natural
73 * Constructs a priority queue with the specified capacity and comparator.
92 * Constructs a priority queue that contains the elements of a collection.
93 * The constructed priority queue has the initial capacity of 110% of the
98 * the collection whose elements will be added to the priority
117 * Constructs a priority queue that contains the elements of another
118 * priority queue. The constructed priority queue has the initial capacit
    [all...]
  /external/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 25 : msg(_msg), priority(_priority)
31 int getPriority() const { return priority; }
36 int priority; member in class:WpaMsg

Completed in 1524 milliseconds

1 2 3 4 5 6 7 8 91011>>