Searched defs:CONTEXT (Results 1 - 25 of 26) sorted by relevance

12

/vbox/src/libs/xpcom18a4/nsprpub/pr/include/md/
H A D_bsdi.h94 #define CONTEXT(_th) ((_th)->md.context) macro
99 if (setjmp(CONTEXT(_thread))) { \
106 if (!setjmp(CONTEXT(_thread))) { \
118 longjmp(CONTEXT(_thread), 1); \
H A D_nec.h70 #define CONTEXT(_thread) (&(_thread)->md.context) macro
80 getcontext(CONTEXT(thread)); \
81 CONTEXT(thread)->uc_stack.ss_sp = (char*) (thread)->stack->stackBottom; \
82 CONTEXT(thread)->uc_stack.ss_size = (thread)->stack->stackSize; \
84 makecontext(CONTEXT(thread), _main, 0); \
88 if (!getcontext(CONTEXT(_thread))) { \
98 ucontext_t *uc = CONTEXT(_thread); \
H A D_nextstep.h89 #define CONTEXT(_th) ((_th)->md.context) macro
117 if (setjmp(CONTEXT(_thread))) { \
124 if (!setjmp(CONTEXT(_thread))) { \
136 longjmp(CONTEXT(_thread), 1); \
H A D_rhapsody.h75 #define CONTEXT(_th) ((_th)->md.context) macro
85 if (setjmp(CONTEXT(_thread))) { \
92 if (!setjmp(CONTEXT(_thread))) { \
104 longjmp(CONTEXT(_thread), 1); \
H A D_sony.h61 #define CONTEXT(_thread) (&(_thread)->md.context) macro
71 getcontext(CONTEXT(_thread)); \
72 CONTEXT(_thread)->uc_stack.ss_sp = (char*) (_thread)->stack->stackBottom; \
73 CONTEXT(_thread)->uc_stack.ss_size = (_thread)->stack->stackSize; \
75 makecontext(CONTEXT(_thread), _main, 0); \
79 if (!getcontext(CONTEXT(_thread))) { \
89 ucontext_t *uc = CONTEXT(_thread); \
H A D_aix.h121 #define CONTEXT(_th) ((_th)->md.jb) macro
122 #define SAVE_CONTEXT(_th) _setjmp(CONTEXT(_th))
123 #define GOTO_CONTEXT(_th) _longjmp(CONTEXT(_th), 1)
135 if (setjmp(CONTEXT(_thread))) { \
142 if (!setjmp(CONTEXT(_thread))) { \
154 longjmp(CONTEXT(_thread), 1); \
H A D_darwin.h152 #define CONTEXT(_th) ((_th)->md.context) macro
162 if (setjmp(CONTEXT(_thread))) { \
169 if (!setjmp(CONTEXT(_thread))) { \
181 longjmp(CONTEXT(_thread), 1); \
H A D_dgux.h81 #define CONTEXT(_th) ((_th)->md.context) macro
89 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
94 if (!_SETJMP(CONTEXT(_thread))) { \
106 _LONGJMP(CONTEXT(_thread), 1); \
H A D_freebsd.h128 #define CONTEXT(_th) ((_th)->md.context) macro
139 if (sigsetjmp(CONTEXT(_thread), 1)) { \
146 if (!sigsetjmp(CONTEXT(_thread), 1)) { \
158 siglongjmp(CONTEXT(_thread), 1); \
H A D_hpux.h103 #define CONTEXT(_th) ((_th)->md.jb) macro
107 #define SAVE_CONTEXT(_th) _setjmp(CONTEXT(_th))
108 #define GOTO_CONTEXT(_th) _longjmp(CONTEXT(_th), 1)
115 if (_setjmp(CONTEXT(_thread))) (*_main)(); \
121 if (!_setjmp(CONTEXT(_thread))) { \
133 _longjmp(CONTEXT(_thread), 1); \
H A D_linux.h168 #define CONTEXT(_th) ((_th)->md.context) macro
317 if (sigsetjmp(CONTEXT(_thread), 1)) { \
331 (void) sigsetjmp(CONTEXT(_thread), 1); \
344 if (sigsetjmp(CONTEXT(_thread), 1)) { \
356 if (!sigsetjmp(CONTEXT(_thread), 1)) { \
368 siglongjmp(CONTEXT(_thread), 1); \
H A D_ncr.h92 #define CONTEXT(_th) ((_th)->md.context) macro
100 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
105 if (!_SETJMP(CONTEXT(_thread))) { \
117 _LONGJMP(CONTEXT(_thread), 1); \
H A D_netbsd.h105 #define CONTEXT(_th) ((_th)->md.context) macro
113 sigsetjmp(CONTEXT(_thread), 1); \
114 CONTEXT(_thread)[2] = (unsigned char*) ((_sp) - 128); \
115 CONTEXT(_thread)[0] = (int) _main; \
118 #define _MD_GET_SP(_thread) CONTEXT(_thread)[2]
123 sigsetjmp(CONTEXT(_thread), 1); \
124 CONTEXT(_thread)[1] = (unsigned char*) ((_sp) - 176 - 0x7ff); \
125 CONTEXT(_thread)[2] = (long) _main; \
126 CONTEXT(_thread)[3] = (long) _main + 4; \
129 #define _MD_GET_SP(_thread) (CONTEXT(_threa
[all...]
H A D_nto.h96 #define CONTEXT(_th) ((_th)->md.context) macro
105 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
110 if (!_SETJMP(CONTEXT(_thread))) { \
122 _LONGJMP(CONTEXT(_thread), 1); \
H A D_openbsd.h90 #define CONTEXT(_th) ((_th)->md.context) macro
113 if (sigsetjmp(CONTEXT(_thread), 1)) { \
120 if (!sigsetjmp(CONTEXT(_thread), 1)) { \
132 siglongjmp(CONTEXT(_thread), 1); \
H A D_qnx.h88 #define CONTEXT(_th) ((_th)->md.context) macro
96 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
101 if (!_SETJMP(CONTEXT(_thread))) { \
113 _LONGJMP(CONTEXT(_thread), 1); \
H A D_reliantunix.h102 #define CONTEXT(_thread) (&(_thread)->md.context) macro
193 _GETCONTEXT(CONTEXT(thread)); \
195 CONTEXT(thread)->uc_stack.ss_sp = thread->stack->stackBottom; \
196 CONTEXT(thread)->uc_stack.ss_size = thread->stack->stackSize; \
197 CONTEXT(thread)->uc_mcontext.gpregs[CXT_SP] = ((unsigned long)_sp - 128) & 0xfffffff8; \
198 CONTEXT(thread)->uc_mcontext.gpregs[CXT_T9] = _main; \
199 CONTEXT(thread)->uc_mcontext.gpregs[CXT_EPC] = _main; \
200 CONTEXT(thread)->uc_mcontext.gpregs[CXT_RA] = 0; \
209 if (!_GETCONTEXT(CONTEXT(_thread))) { \
232 ucontext_t *uc = CONTEXT(_threa
[all...]
H A D_scoos.h85 #define CONTEXT(_th) ((_th)->md.jb) macro
90 if (sigsetjmp(CONTEXT(_thread),1)) { \
97 if (!sigsetjmp(CONTEXT(_thread), 1)) { \
109 siglongjmp(CONTEXT(_thread), 1); \
H A D_sunos4.h88 #define CONTEXT(_th) ((_th)->md.context) macro
107 if (!setjmp(CONTEXT(_thread))) { \
119 longjmp(CONTEXT(_thread), 1); \
H A D_unixware.h81 #define CONTEXT(_th) ((_th)->md.context) macro
89 if(_SETJMP(CONTEXT(_thread))) (*_main)(); \
94 if (!_SETJMP(CONTEXT(_thread))) { \
106 _LONGJMP(CONTEXT(_thread), 1); \
H A D_openvms.h163 #define CONTEXT(_th) ((_th)->md.context) macro
176 if (setjmp(CONTEXT(_thread))) { \
184 if (!setjmp(CONTEXT(_thread))) { \
196 longjmp(CONTEXT(_thread), 1); \
H A D_osf1.h106 #define CONTEXT(_th) ((_th)->md.context) macro
114 if (setjmp(CONTEXT(_thread))) { \
122 if (!setjmp(CONTEXT(_thread))) { \
134 longjmp(CONTEXT(_thread), 1); \
H A D_solaris.h239 #define CONTEXT(_thread) (&(_thread)->md.context) macro
513 #define CONTEXT(_thread) (_thread)->md.context
533 #define CONTEXT(_thread) (&(_thread)->md.context)
567 if (!setjmp(CONTEXT(_thread))) { \
578 longjmp(CONTEXT(_newThread), 1); \
587 ucontext_t *uc = CONTEXT(_thread); \
607 if (!getcontext(CONTEXT(_thread))) { \
620 ucontext_t *uc = CONTEXT(_newThread); \
635 if (setjmp(CONTEXT(_thread))) _main(); \
640 if (!setjmp(CONTEXT(_threa
[all...]
H A D_win16.h467 #define CONTEXT(_t) ((_t)->md.context) macro
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinnt.h944 } CONTEXT; typedef in typeref:struct:_CONTEXT
1117 } CONTEXT;
1201 PVOID WINAPI RtlVirtualUnwind(ULONG,ULONG64,ULONG64,RUNTIME_FUNCTION*,CONTEXT*,PVOID*,ULONG64*,KNONVOLATILE_CONTEXT_POINTERS*);
1439 } CONTEXT, *PCONTEXT; typedef in typeref:struct:_CONTEXT
1519 ULONGLONG WINAPI RtlVirtualUnwind(ULONGLONG,ULONGLONG,RUNTIME_FUNCTION*,CONTEXT*,BOOLEAN*,FRAME_POINTERS*,KNONVOLATILE_CONTEXT_POINTERS*);
1616 } CONTEXT; typedef in typeref:struct:_CONTEXT
1625 /* The following flags control the contents of the CONTEXT structure. */
1680 a CONTEXT record.
1718 } CONTEXT; typedef in typeref:struct:_CONTEXT
1730 * There is not yet an official CONTEXT structur
1791 } CONTEXT; typedef in typeref:struct:_CONTEXT
1893 } CONTEXT; typedef in typeref:struct:_CONTEXT
2005 } CONTEXT; typedef in typeref:struct:__anon14523
[all...]

Completed in 128 milliseconds

12