/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/ |
H A D | vlan_cmd.c | 40 /** 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 D | bsdi.c | 111 PRThreadPriority priority, 108 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | darwin.c | 99 PRThreadPriority priority, 96 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | dgux.c | 102 PRThreadPriority priority, 99 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | freebsd.c | 111 PRThreadPriority priority, 108 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | linux.c | 115 PRThreadPriority priority, 112 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | nec.c | 93 PRThreadPriority priority, 90 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | netbsd.c | 113 PRThreadPriority priority, 110 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | openbsd.c | 113 PRThreadPriority priority, 110 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | osf1.c | 99 PRThreadPriority priority, 96 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | qnx.c | 95 PRUintn priority, 92 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRUintn priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | sony.c | 101 PRThreadPriority priority, 98 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | sunos4.c | 47 PRThreadPriority priority, 45 _MD_CREATE_THREAD(PRThread *thread, void (*start)(void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | reliantunix.c | 123 PRUintn priority, 120 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRUintn priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | rhapsody.c | 99 PRThreadPriority priority, 96 _MD_CREATE_THREAD( PRThread *thread, void (*start) (void *), PRThreadPriority priority, PRThreadScope scope, PRThreadState state, PRUint32 stackSize) argument
|
H A D | scoos.c | 175 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 D | vlan.c | 49 /** 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 D | w95thred.c | 123 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 D | prcthr.c | 107 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 D | priotest.c | 116 ** 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 D | xkbfile.h | 194 int priority; member in struct:_XkbDrawable
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | xkbfile.h | 194 int priority; member in struct:_XkbDrawable
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
H A D | xkbfile.h | 241 int priority; member in struct:_XkbDrawable
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/ |
H A D | xkbfile.h | 241 int priority; member in struct:_XkbDrawable
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/ |
H A D | xkbfile.h | 218 int priority; member in struct:_XkbDrawable
|