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

1234567891011>>

/macosx-10.9.5/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.9.5/pyobjc-42/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.9.5/pyobjc-42/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.9.5/dcerpc-58/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.9.5/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.9.5/SmartcardCCID-55005/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);
70 #define Log0(priority) log_msg(priority, "%s:%d:%s()", __FILE__, __LINE__, __FUNCTION__)
71 #define Log1(priority, fmt) log_msg(priority, "
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/cf/
H A DResourceRequestCFNet.h44 inline ResourceLoadPriority toResourceLoadPriority(int priority) argument
46 switch (priority) {
65 inline int toHTTPPipeliningPriority(ResourceLoadPriority priority) argument
67 switch (priority) {
/macosx-10.9.5/Security-55471.14.18/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.9.5/Security-55471.14.18/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.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOMCSS.mm172 [self setProperty:@"azimuth" value:azimuth priority:@""];
182 [self setProperty:@"background" value:background priority:@""];
192 [self setProperty:@"background-attachment" value:backgroundAttachment priority:@""];
202 [self setProperty:@"background-color" value:backgroundColor priority:@""];
212 [self setProperty:@"background-image" value:backgroundImage priority:@""];
222 [self setProperty:@"background-position" value:backgroundPosition priority:@""];
232 [self setProperty:@"background-repeat" value:backgroundRepeat priority:@""];
242 [self setProperty:@"border" value:border priority:@""];
252 [self setProperty:@"border-collapse" value:borderCollapse priority:@""];
262 [self setProperty:@"border-color" value:borderColor priority
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/rdata/in_1/
H A Dsrv_33.h31 isc_uint16_t priority; member in struct:dns_rdata_in_srv
/macosx-10.9.5/WebKit2-7537.78.2/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.9.5/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.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DLayerMessage.h62 inline void dispatchWebKitMessage(PlatformMessage* msg, PlatformMessagePriority priority = PlatformMessagePriorityNormal)
64 if (priority != PlatformMessagePriorityNormal)
65 msg->setPriority(BlackBerry::Platform::webKitThreadMessageClient()->threadPriority() + priority);
/macosx-10.9.5/postfix-252/postfix/src/xsasl/
H A Dxsasl_cyrus_log.c9 /* int xsasl_cyrus_log(context, priority, text)
11 /* int priority;
47 int xsasl_cyrus_log(void *unused_context, int priority, argument
50 switch (priority) {
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DResourceLoadScheduler.cpp102 PassRefPtr<SubresourceLoader> ResourceLoadScheduler::scheduleSubresourceLoad(Frame* frame, CachedResource* resource, const ResourceRequest& request, ResourceLoadPriority priority, const ResourceLoaderOptions& options) argument
106 scheduleLoad(loader.get(), priority);
118 void ResourceLoadScheduler::scheduleLoad(ResourceLoader* resourceLoader, ResourceLoadPriority priority) argument
121 ASSERT(priority != ResourceLoadPriorityUnresolved);
133 host->schedule(resourceLoader, priority);
135 if (priority > ResourceLoadPriorityLow || !resourceLoader->url().protocolIsInHTTPFamily() || (priority == ResourceLoadPriorityLow && !hadRequests)) {
137 servePendingRequests(host, priority);
143 // Handle asynchronously so early low priority requests don't
144 // get scheduled before later high priority one
268 schedule(ResourceLoader* resourceLoader, ResourceLoadPriority priority) argument
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/dbinc_auto/
H A Drepmgr_auto.h14 u_int32_t priority; member in struct:___repmgr_handshake_args
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/upgrade.4.2/
H A DMakefile4 lockng.html nosync.html priority.html queue.html repinit.html \
/macosx-10.9.5/BerkeleyDB-21/db/examples_cxx/excxx_repquote/
H A DRepConfigInfo.h30 int priority; member in class:RepConfigInfo

Completed in 196 milliseconds

1234567891011>>