OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:property_val
(Results
1 - 2
of
2
) sorted by null
/system/core/reboot/
reboot.c
28
char
property_val
[PROPERTY_VALUE_MAX];
local
60
prop_len = snprintf(
property_val
, sizeof(
property_val
), "%s,%s", cmd, optarg);
61
if (prop_len >= sizeof(
property_val
)) {
66
ret = property_set(ANDROID_RB_PROPERTY,
property_val
);
/system/core/adb/
services.cpp
157
char
property_val
[PROPERTY_VALUE_MAX];
local
158
int ret = snprintf(
property_val
, sizeof(
property_val
), "reboot,%s", reboot_arg);
159
if (ret >= static_cast<int>(sizeof(
property_val
))) {
164
ret = property_set(ANDROID_RB_PROPERTY,
property_val
);
Completed in 91 milliseconds