Searched refs:propBuf (Results 1 – 3 of 3) sorted by relevance
/system/core/libcutils/ |
D | process_name.c | 41 char propBuf[PROPERTY_VALUE_MAX]; in set_process_name() local 71 property_get("ro.kernel.qemu", propBuf, ""); in set_process_name() 72 if (propBuf[0] == '1') { in set_process_name()
|
/system/extras/perfprofd/ |
D | cpuconfig.cc | 56 char propBuf[PROPERTY_VALUE_MAX]; in GetMpdecisionRunning() local 57 property_get("init.svc.mpdecision", propBuf, ""); in GetMpdecisionRunning() 58 return strcmp(propBuf, "running") == 0; in GetMpdecisionRunning()
|
D | perfprofdcore.cc | 225 char propBuf[PROPERTY_VALUE_MAX]; in get_booting() local 226 propBuf[0] = '\0'; in get_booting() 227 property_get("sys.boot_completed", propBuf, ""); in get_booting() 228 return (propBuf[0] != '1'); in get_booting() 843 char propBuf[PROPERTY_VALUE_MAX]; in init() local 844 propBuf[0] = '\0'; in init() 845 property_get("ro.kernel.qemu", propBuf, ""); in init() 846 running_in_emulator = (propBuf[0] == '1'); in init() 847 property_get("ro.debuggable", propBuf, ""); in init() 848 is_debug_build = (propBuf[0] == '1'); in init()
|