Home
last modified time | relevance | path

Searched refs:Get (Results 1 – 10 of 10) sorted by relevance

/bionic/tests/
Dsystem_properties_test.cpp134 ASSERT_EQ(6, system_properties.Get("property", propvalue)); in TEST()
137 ASSERT_EQ(6, system_properties.Get("other_property", propvalue)); in TEST()
140 ASSERT_EQ(6, system_properties.Get("property_other", propvalue)); in TEST()
143 ASSERT_EQ(5, system_properties.Get(name, propvalue)); in TEST()
166 ASSERT_EQ(6, system_properties.Get(name, propvalue)); in TEST()
169 ASSERT_EQ(6, system_properties.Get(override_name, propvalue)); in TEST()
172 ASSERT_EQ(0, system_properties.Get(name_not_written, propvalue)); in TEST()
175 ASSERT_EQ(6, system_properties.Get(override_with_no_real, propvalue)); in TEST()
185 ASSERT_EQ(6, system_properties.Get(name, propvalue)); in TEST()
188 ASSERT_EQ(0, system_properties.Get(override_name, propvalue)); in TEST()
[all …]
/bionic/libc/private/
DCachedProperty.h55 Get(); in DidChange()
62 const char* Get() { in Get() function
/bionic/linker/
Dlinker_logger.cpp97 flags_ |= ParseProperty(debug_ld_all.Get()); in ResetState()
/bionic/libc/bionic/
Dbionic_systrace.cpp42 g_tags = strtoull(g_debug_atrace_tags_enableflags.Get(), nullptr, 0); in should_trace()
Dsystem_property_api.cpp88 return system_properties.Get(name, value); in __system_property_get()
/bionic/libc/system_properties/include/system_properties/
Dsystem_properties.h65 int Get(const char* name, char* value);
/bionic/libc/arch-x86/bionic/
Dsyscall.S30 # Get and save the system call entry address.
/bionic/libc/tzcode/
Dbionic.cpp46 const char* name = persist_sys_timezone.Get(); in __bionic_get_system_tz()
/bionic/benchmarks/
Dproperty_benchmark.cpp139 pa.system_properties().Get(pa.names[random() % nprops], value); in BM_property_get()
/bionic/libc/system_properties/
Dsystem_properties.cpp259 int SystemProperties::Get(const char* name, char* value) { in Get() function in SystemProperties