Searched defs:priority (Results 1 - 25 of 124) sorted by relevance

12345

/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/
H A Dvlan_cmd.c40 /** VLAN default priority */
41 unsigned int priority; member in struct:vcreate_options
48 OPTION_DESC ( "priority", 'p', required_argument,
49 struct vcreate_options, priority, parse_integer ),
55 "--tag <tag> [--priority <priority>] "
79 if ( ( rc = vlan_create ( trunk, opts.tag, opts.priority ) ) != 0 ) {
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dbsdi.c111 PRThreadPriority priority,
108 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Ddarwin.c99 PRThreadPriority priority,
96 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Ddgux.c102 PRThreadPriority priority,
99 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dfreebsd.c111 PRThreadPriority priority,
108 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dlinux.c115 PRThreadPriority priority,
112 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dnec.c93 PRThreadPriority priority,
90 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dnetbsd.c113 PRThreadPriority priority,
110 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dopenbsd.c113 PRThreadPriority priority,
110 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dosf1.c99 PRThreadPriority priority,
96 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dqnx.c95 PRUintn priority,
92 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRUintn priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dsony.c101 PRThreadPriority priority,
98 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dsunos4.c47 PRThreadPriority priority,
45 _MD_CREATE_THREAD(PRThread *thread, void (*start)(void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dreliantunix.c123 PRUintn priority,
120 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRUintn priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Drhapsody.c99 PRThreadPriority priority,
96 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
H A Dscoos.c175 PRThreadPriority priority,
172 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Dvlan.c49 /** Default priority */
50 unsigned int priority; member in struct:vlan_device
110 vlanhdr->tci = htons ( VLAN_TCI ( vlan->tag, vlan->priority ) );
312 * @v priority Default VLAN priority
316 unsigned int priority ) {
321 /* If VLAN already exists, just update the priority */
324 if ( priority != vlan->priority ) {
325 DBGC ( netdev, "VLAN %s priority change
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw95thred.c123 PRThreadPriority priority,
143 * On windows, a thread is created with a thread priority of
146 if (priority != PR_PRIORITY_NORMAL) {
147 _PR_MD_SET_PRIORITY(&(thread->md), priority);
192 ("PR_SetThreadPriority: can't set thread priority\n"));
121 _PR_MD_CREATE_THREAD(PRThread *thread, void (*start)(void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/
H A Dprcthr.c107 PRUintn pri = me->priority;
168 return (PRThreadPriority) thread->priority;
373 PRThreadPriority priority,
378 return _PR_CreateThread(type, start, arg, priority, scope, state,
386 PRUintn priority,
391 return _PR_CreateThread(type, start, arg, priority, scope, state,
398 PRThreadType type, PRThreadPriority priority, PRThreadStack *stack)
401 #pragma unused (type, priority, stack)
370 PR_CreateThreadGCAble(PRThreadType type, void (*start)(void *arg), void *arg, PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
383 PR_CreateThreadBound(PRThreadType type, void (*start)(void *arg), void *arg, PRUintn priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
397 PR_AttachThreadGCAble( PRThreadType type, PRThreadPriority priority, PRThreadStack *stack) argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dpriotest.c116 ** Try some rudimentary tests like setting valid priority and
120 PRThreadPriority priority; local
122 priority = PR_GetThreadPriority(PR_GetCurrentThread());
123 failed = ((PR_TRUE == failed) || (PR_PRIORITY_URGENT != priority))
125 if (debug_mode && (PR_PRIORITY_URGENT != priority))
133 priority = PR_GetThreadPriority(PR_GetCurrentThread());
134 failed = ((PR_TRUE == failed) || (PR_PRIORITY_FIRST != priority))
136 if (debug_mode && (PR_PRIORITY_FIRST != priority))
143 priority = PR_GetThreadPriority(PR_GetCurrentThread());
144 failed = ((PR_TRUE == failed) || (PR_PRIORITY_LAST != priority))
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dxkbfile.h194 int priority; member in struct:_XkbDrawable
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dxkbfile.h194 int priority; member in struct:_XkbDrawable
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dxkbfile.h241 int priority; member in struct:_XkbDrawable
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dxkbfile.h241 int priority; member in struct:_XkbDrawable
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dxkbfile.h218 int priority; member in struct:_XkbDrawable

Completed in 325 milliseconds

12345