Home
last modified time | relevance | path

Searched refs:guest_buf (Results 1 – 3 of 3) sorted by relevance

/frameworks/libs/native_bridge_support/android_api/libc/proxy/
Dsetjmp_thunks.cc30 void DoThunk__longjmp(void* guest_buf, int value) { in DoThunk__longjmp() argument
31 DoThunk_siglongjmp(guest_buf, value); in DoThunk__longjmp()
35 int DoThunk__setjmp(void* guest_buf) { return DoThunk_sigsetjmp(guest_buf, 0); } in DoThunk__setjmp() argument
39 void DoThunk_longjmp(void* guest_buf, int value) { in DoThunk_longjmp() argument
40 DoThunk_siglongjmp(guest_buf, value); in DoThunk_longjmp()
44 int DoThunk_setjmp(void* guest_buf) { return DoThunk_sigsetjmp(guest_buf, 1); } in DoThunk_setjmp() argument
46 void DoThunk_siglongjmp(void* guest_buf, int value) { in DoThunk_siglongjmp() argument
47 TRACE("DoThunk_siglongjmp, guest_buf=%p", guest_buf); in DoThunk_siglongjmp()
49 RestoreRegsFromJumpBuf(thread->state(), guest_buf, value); in DoThunk_siglongjmp()
51 siglongjmp(**GetHostJmpBufPtr(guest_buf), 0); in DoThunk_siglongjmp()
[all …]
Dsetjmp_thunks.h22 void DoThunk__longjmp(void* guest_buf, int value);
24 int DoThunk__setjmp(void* guest_buf);
26 int DoThunk_setjmp(void* guest_buf);
28 void DoThunk_longjmp(void* guest_buf, int value);
30 int DoThunk_sigsetjmp(void* guest_buf, int savesig);
32 void DoThunk_siglongjmp(void* guest_buf, int value);
/frameworks/libs/binary_translation/guest_os_primitives/include/berberis/guest_os_primitives/
Dguest_setjmp.h29 jmp_buf** GetHostJmpBufPtr(void* guest_buf);