Searched refs:priority (Results 1 - 25 of 517) sorted by relevance

1234567891011>>

/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Ddebug.h21 * Log1(priority, "text");
22 * log "text" with priority level priority
23 * Log2(priority, "text: %d", 1234);
26 * Log3(priority, "text: %d %d", 1234, 5678);
29 * LogXxd(priority, msg, buffer, size);
61 #define Log0(priority) log_msg(priority, "%s:%d:%s()", __FILE__, __LINE__, __FUNCTION__)
62 #define Log1(priority, fmt) log_msg(priority, "
[all...]
H A Ddebuglog.h49 * Log1(priority, "text");
50 * log "text" with priority level priority
51 * Log2(priority, "text: %d", 1234);
54 * Log3(priority, "text: %d %d", 1234, 5678);
57 * LogXxd(priority, msg, buffer, size);
97 #define Log0(priority) log_msg(priority, "%s:%d:%s()", __FILE__, __LINE__, __FUNCTION__)
98 #define Log1(priority, fmt) log_msg(priority, "
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/ToDos/
H A DPriorityToColourTransformer.py23 def transformedValue_(self, priority):
24 if priority > 4:
26 elif priority > 3:
28 elif priority > 2:
30 elif priority > 1:
32 elif priority > 0:
H A DCategory.py16 priority = objc.ivar('priority', 'i') variable in class:Category
26 if thePriority >= category.priority:
35 newCategory.priority = aValue
40 # To encode, simply save 'priority'; on decode, replace self with
41 # the existing instance from 'allCategories' with the same priority
45 encoder.encodeInt_forKey_(self.priority, u"priority")
47 encoder.encodeObject_(self.priority)
51 thePriority = decoder.decodeIntForKey_(u"priority")
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/ToDos/
H A DPriorityToColourTransformer.py23 def transformedValue_(self, priority):
24 if priority > 4:
26 elif priority > 3:
28 elif priority > 2:
30 elif priority > 1:
32 elif priority > 0:
H A DCategory.py16 priority = objc.ivar('priority', 'i') variable in class:Category
26 if thePriority >= category.priority:
35 newCategory.priority = aValue
40 # To encode, simply save 'priority'; on decode, replace self with
41 # the existing instance from 'allCategories' with the same priority
45 encoder.encodeInt_forKey_(self.priority, u"priority")
47 encoder.encodeObject_(self.priority)
51 thePriority = decoder.decodeIntForKey_(u"priority")
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/CocoaBindings/ToDos/
H A DPriorityToColourTransformer.py23 def transformedValue_(self, priority):
24 if priority > 4:
26 elif priority > 3:
28 elif priority > 2:
30 elif priority > 1:
32 elif priority > 0:
H A DCategory.py16 priority = objc.ivar('priority', 'i') variable in class:Category
26 if thePriority >= category.priority:
35 newCategory.priority = aValue
40 # To encode, simply save 'priority'; on decode, replace self with
41 # the existing instance from 'allCategories' with the same priority
45 encoder.encodeInt_forKey_(self.priority, u"priority")
47 encoder.encodeObject_(self.priority)
51 thePriority = decoder.decodeIntForKey_(u"priority")
[all...]
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_attr_setprio.c89 dcethread_attr_setprio(dcethread_attr *attr, int priority) argument
94 sp.sched_priority = priority;
100 dcethread_attr_setprio_throw(dcethread_attr *attr, int priority) argument
102 DCETHREAD_WRAP_THROW(dcethread_attr_setprio(attr, priority));
H A Ddcethread_setprio.c86 dcethread_setprio(dcethread* thread, int priority) argument
97 sp.sched_priority = priority;
108 dcethread_setprio_throw(dcethread* thread, int priority) argument
110 DCETHREAD_WRAP_THROW(dcethread_setprio(thread, priority));
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/MacOSX/
H A Ddebuglog.h20 * Log1(priority, "text");
21 * log "text" with priority level priority
22 * Log2(priority, "text: %d", 1234);
25 * Log3(priority, "text: %d %d", 1234, 5678);
28 * LogXxd(priority, msg, buffer, size);
69 #define Log0(priority) do { } while(0)
70 #define Log1(priority, fmt) do { } while(0)
71 #define Log2(priority, fmt, data) do { } while(0)
72 #define Log3(priority, fm
[all...]
/macosx-10.10/OpenPAM-20/openpam/lib/
H A Dopenpam_log.c67 int priority; local
74 priority = LOG_DEBUG;
77 priority = LOG_INFO;
80 priority = LOG_NOTICE;
84 priority = LOG_ERR;
88 vsyslog(LOG_AUTHPRIV|priority, fmt, ap);
99 int priority; local
106 priority = LOG_DEBUG;
109 priority = LOG_INFO;
112 priority
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DResourceRequestCFNet.h44 inline ResourceLoadPriority toResourceLoadPriority(int priority) argument
46 switch (priority) {
65 inline int toPlatformRequestPriority(ResourceLoadPriority priority) argument
67 switch (priority) {
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dlogging.h47 void syslog(int priority, const char *format, ...) __printflike(2, 3);
61 void upto(int priority);
62 void enable(int priority);
63 void disable(int priority);
H A Dlogging.cpp55 static void output(int priority, const char *format, va_list args) argument
57 ::vsyslog(priority, format, args);
64 void syslog(int priority, const char *format, ...) argument
65 { va_list args; va_start(args, format); output(priority, format, args); va_end(args); }
95 void upto(int priority) argument
97 ::setlogmask(LOG_UPTO(priority));
100 void enable(int priority) argument
102 ::setlogmask(::setlogmask(0) | LOG_MASK(priority));
105 void disable(int priority) argument
107 ::setlogmask(::setlogmask(0) & ~LOG_MASK(priority));
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dlogging.h47 void syslog(int priority, const char *format, ...) __printflike(2, 3);
61 void upto(int priority);
62 void enable(int priority);
63 void disable(int priority);
H A Dlogging.cpp55 static void output(int priority, const char *format, va_list args) argument
57 ::vsyslog(priority, format, args);
64 void syslog(int priority, const char *format, ...) argument
65 { va_list args; va_start(args, format); output(priority, format, args); va_end(args); }
95 void upto(int priority) argument
97 ::setlogmask(LOG_UPTO(priority));
100 void enable(int priority) argument
102 ::setlogmask(::setlogmask(0) | LOG_MASK(priority));
105 void disable(int priority) argument
107 ::setlogmask(::setlogmask(0) & ~LOG_MASK(priority));
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DDOMCSS.mm156 [self setProperty:@"azimuth" value:azimuth priority:@""];
166 [self setProperty:@"background" value:background priority:@""];
176 [self setProperty:@"background-attachment" value:backgroundAttachment priority:@""];
186 [self setProperty:@"background-color" value:backgroundColor priority:@""];
196 [self setProperty:@"background-image" value:backgroundImage priority:@""];
206 [self setProperty:@"background-position" value:backgroundPosition priority:@""];
216 [self setProperty:@"background-repeat" value:backgroundRepeat priority:@""];
226 [self setProperty:@"border" value:border priority:@""];
236 [self setProperty:@"border-collapse" value:borderCollapse priority:@""];
246 [self setProperty:@"border-color" value:borderColor priority
[all...]
/macosx-10.10/libpthread-105.1.4/kern/
H A Dkern_policy.c48 pthread_priority_get_qos_class(pthread_priority_t priority) argument
51 switch (_pthread_priority_get_qos_newest(priority)) {
78 pthread_priority_t priority; local
79 priority = _pthread_priority_make_newest(qos, 0, 0);
81 return priority;
85 pthread_priority_get_class_index(pthread_priority_t priority) argument
87 switch (_pthread_priority_get_qos_newest(priority)) {
/macosx-10.10/bind9-45.101/bind9/lib/dns/rdata/in_1/
H A Dsrv_33.h31 isc_uint16_t priority; member in struct:dns_rdata_in_srv
/macosx-10.10/OpenSSL098-52/src/crypto/pqueue/
H A Dpqueue.c71 pitem_new(PQ_64BIT priority, void *data) argument
76 pq_64bit_init(&(item->priority));
77 pq_64bit_assign(&item->priority, &priority);
90 pq_64bit_free(&(item->priority));
127 if (pq_64bit_gt(&(next->priority), &(item->priority)))
139 if (pq_64bit_eq(&(item->priority), &(next->priority)))
167 pqueue_find(pqueue_s *pq, PQ_64BIT priority) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/NetworkProcess/
H A DHostRecord.cpp67 m_loadersPending[loader->priority()].append(loader);
108 for (int priority = ResourceLoadPriorityHighest; priority >= ResourceLoadPriorityLowest; --priority) {
109 if (removeLoaderFromQueue(loader, m_loadersPending[priority]))
142 void HostRecord::servePendingRequestsForQueue(LoaderQueue& queue, ResourceLoadPriority priority) argument
157 // Very low priority loaders are only handled when no other loaders are in progress.
158 if (shouldLimitRequests && priority == ResourceLoadPriorityVeryLow && !m_loadersInProgress.isEmpty())
172 if (shouldLimitRequests && limitsRequests(priority, loader.get()))
191 for (int priority
195 limitsRequests(ResourceLoadPriority priority, NetworkResourceLoader* loader) const argument
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DCSSProperty.js26 WebInspector.CSSProperty = function(index, text, name, value, priority, enabled, overridden, implicit, anonymous, valid, styleSheetTextRange, styleDeclarationTextRange)
33 this.update(text, name, value, priority, enabled, overridden, implicit, anonymous, valid, styleSheetTextRange, styleDeclarationTextRange, true);
68 update: function(text, name, value, priority, enabled, overridden, implicit, anonymous, valid, styleSheetTextRange, styleDeclarationTextRange, dontFireEvents)
73 priority = priority || "";
83 changed = this._name !== name || this._value !== value || this._priority !== priority ||
97 this._priority = priority;
132 var priority = this.priority;
133 return name + ": " + this.value.trim() + (priority
[all...]
/macosx-10.10/BerkeleyDB-21/db/mp/
H A Dmp_fput.c25 __memp_fput_pp(dbmfp, pgaddr, priority, flags)
28 DB_CACHE_PRIORITY priority;
44 ret = __memp_fput(dbmfp, ip, pgaddr, priority);
61 __memp_fput(dbmfp, ip, pgaddr, priority)
65 DB_CACHE_PRIORITY priority;
178 * discard flags (for now) and leave the buffer's priority alone.
188 /* Update priority values. */
189 if (priority == DB_PRIORITY_VERY_LOW ||
190 mfp->priority == MPOOL_PRI_VERY_LOW)
191 bhp->priority
274 u_int32_t bucket, priority; local
[all...]
/macosx-10.10/WebCore-7600.1.25/loader/
H A DResourceLoadScheduler.cpp115 PassRefPtr<SubresourceLoader> ResourceLoadScheduler::scheduleSubresourceLoad(Frame* frame, CachedResource* resource, const ResourceRequest& request, ResourceLoadPriority priority, const ResourceLoaderOptions& options) argument
119 scheduleLoad(loader.get(), priority);
140 void ResourceLoadScheduler::scheduleLoad(ResourceLoader* resourceLoader, ResourceLoadPriority priority) argument
143 ASSERT(priority != ResourceLoadPriorityUnresolved);
167 host->schedule(resourceLoader, priority);
179 if ((priority > ResourceLoadPriorityLow || !resourceLoader->iOSOriginalRequest().url().protocolIsInHTTPFamily() || (priority == ResourceLoadPriorityLow && !hadRequests)) && !isSuspendingPendingRequests()) {
181 servePendingRequests(host, priority);
185 if (priority > ResourceLoadPriorityLow || !resourceLoader->url().protocolIsInHTTPFamily() || (priority
352 schedule(ResourceLoader* resourceLoader, ResourceLoadPriority priority) argument
[all...]

Completed in 1721 milliseconds

1234567891011>>