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

  /external/libchrome/mojo/core/
mojo_core.cc 20 MojoSystemThunks g_thunks = {0}; member in namespace:__anon27754
31 if (!g_thunks.size) {
32 g_thunks = mojo::core::GetSystemThunks();
33 g_thunks.Initialize = InitializeImpl;
38 CHECK_GE(thunks->size, g_thunks.size);
39 memcpy(thunks, &g_thunks, g_thunks.size);
entrypoints.cc 350 MojoSystemThunks g_thunks = {sizeof(MojoSystemThunks), member in namespace:__anon27745
410 return g_thunks;
  /external/libchrome/mojo/public/c/system/
thunks.cc 36 PROTECTED_MEMORY_SECTION base::ProtectedMemory<MojoSystemThunks> g_thunks; member in namespace:__anon27784
49 (reinterpret_cast<uintptr_t>(static_cast<const void*>(&g_thunks->name)) - \
50 reinterpret_cast<uintptr_t>(static_cast<const void*>(&g_thunks)) < \
51 g_thunks->size)
55 ? base::UnsanitizedCfiCall(g_thunks, &MojoSystemThunks::name)(__VA_ARGS__) \
117 DCHECK_EQ(g_thunks->size, 0u);
119 auto writer = base::AutoWritableMemory::Create(g_thunks);
120 g_thunks->size = sizeof(*g_thunks);
121 base::UnsanitizedCfiCall(g_get_thunks)(&*g_thunks);
    [all...]

Completed in 777 milliseconds