Home
last modified time | relevance | path

Searched refs:LoadState (Results 1 – 7 of 7) sorted by relevance

/external/lua/src/
Dlundump.c36 } LoadState; typedef
39 static l_noret error(LoadState *S, const char *why) { in error()
51 static void LoadBlock (LoadState *S, void *b, size_t size) { in LoadBlock()
60 static lu_byte LoadByte (LoadState *S) { in LoadByte()
67 static int LoadInt (LoadState *S) { in LoadInt()
74 static lua_Number LoadNumber (LoadState *S) { in LoadNumber()
81 static lua_Integer LoadInteger (LoadState *S) { in LoadInteger()
88 static TString *LoadString (LoadState *S) { in LoadString()
107 static void LoadCode (LoadState *S, Proto *f) { in LoadCode()
115 static void LoadFunction(LoadState *S, Proto *f, TString *psource);
[all …]
/external/perfetto/src/perfetto_cmd/
Drate_limiter_unittest.cc42 ON_CALL(*this, LoadState(_)) in MockRateLimiter()
58 return RateLimiter::LoadState(state); in LoadStateConcrete()
65 MOCK_METHOD1(LoadState, bool(PerfettoCmdState*));
87 ASSERT_TRUE(limiter.LoadState(&output)); in TEST()
101 ASSERT_TRUE(limiter.LoadState(&output)); in TEST()
108 ASSERT_FALSE(limiter.LoadState(&output)); in TEST()
118 ASSERT_FALSE(limiter.LoadState(&output)); in TEST()
147 EXPECT_CALL(limiter, LoadState(_)); in TEST()
169 EXPECT_CALL(limiter, LoadState(_)); in TEST()
196 EXPECT_CALL(limiter, LoadState(_)); in TEST()
[all …]
Drate_limiter.cc93 bool loaded_state = LoadState(&state_); in ShouldTrace()
186 bool RateLimiter::LoadState(PerfettoCmdState* state) { in LoadState() function in perfetto::RateLimiter
Drate_limiter.h44 virtual bool LoadState(PerfettoCmdState* state);
/external/libchrome/mojo/public/js/
Dbase.js69 var LoadState = { variable
91 return mojomRegistry.get(id) === LoadState.PENDING_LOAD;
95 return mojomRegistry.get(id) === LoadState.LOADED;
103 mojomRegistry.set(id, LoadState.PENDING_LOAD);
107 mojomRegistry.set(id, LoadState.LOADED);
/external/toolchain-utils/binary_search_tool/
Dbinary_search_state.py592 def LoadState(cls): member in BinarySearchState
780 bss = BinarySearchState.LoadState()
/external/toolchain-utils/binary_search_tool/test/
Dbinary_search_tool_tester.py245 bss2 = binary_search_state.MockBinarySearchState.LoadState()