HomeSort by relevance Sort by last modified time
    Searched refs:mainthread (Results 1 - 11 of 11) sorted by null

  /external/libxml2/
threads.c 135 static pthread_t mainthread; variable
146 static DWORD mainthread; variable
156 thread_id mainthread = 0; variable
811 return (pthread_equal(mainthread,pthread_self()));
813 return (mainthread == GetCurrentThreadId());
815 return (mainthread == find_thread(NULL));
944 * xmlOnceInit() is used to initialize the value of mainthread for use
955 mainthread = pthread_self();
963 mainthread = GetCurrentThreadId();
977 mainthread = find_thread(NULL)
    [all...]
  /external/lua/src/
lstate.c 276 memcpy(lua_getextraspace(L1), lua_getextraspace(g->mainthread),
310 g->mainthread = L;
342 L = G(L)->mainthread; /* only the main thread can be closed */
lstate.h 166 struct lua_State *mainthread; member in struct:global_State
ldo.c 118 if (g->mainthread->errorJmp) { /* main thread has a handler? */
119 setobjs2s(L, g->mainthread->top++, L->top - 1); /* copy error obj. */
120 luaD_throw(g->mainthread, errcode); /* re-throw in main thread */
699 if (L != G(L)->mainthread)
lgc.c 254 getuservalue(g->mainthread, gco2u(o), &uvalue);
340 markobject(g, g->mainthread);
988 lua_assert(!iswhite(g->mainthread));
    [all...]
lapi.c 578 return (G(L)->mainthread == L);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lstate.h 143 struct lua_State *mainthread; member in struct:global_State
lstate.c 282 g->mainthread = L;
318 L = G(L)->mainthread; /* only the main thread can be closed */
ldo.c 110 if (G(L)->mainthread->errorJmp) { /* main thread has a handler? */
111 setobjs2s(L, G(L)->mainthread->top++, L->top - 1); /* copy error obj. */
112 luaD_throw(G(L)->mainthread, errcode); /* re-throw in main thread */
573 if (L != G(L)->mainthread)
lgc.c 340 markobject(g, g->mainthread);
1003 lua_assert(!iswhite(obj2gco(g->mainthread)));
    [all...]
lapi.c 598 return (G(L)->mainthread == L);

Completed in 602 milliseconds