OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:prop_len
(Results
1 - 2
of
2
) sorted by null
/system/core/reboot/
reboot.c
27
size_t
prop_len
;
local
60
prop_len
= snprintf(property_val, sizeof(property_val), "%s,%s", cmd, optarg);
61
if (
prop_len
>= sizeof(property_val)) {
/system/core/init/
init_parser.cpp
251
int
prop_len
= 0;
local
279
while (*c && *c != '}' &&
prop_len
< PROP_NAME_MAX)
280
prop[
prop_len
++] = *(c++);
283
if (
prop_len
== PROP_NAME_MAX)
291
prop[
prop_len
] = '\0';
294
while (*c &&
prop_len
< PROP_NAME_MAX)
295
prop[
prop_len
++] = *(c++);
296
if (
prop_len
== PROP_NAME_MAX && *c != '\0') {
300
prop[
prop_len
] = '\0';
305
if (
prop_len
== 0)
[
all
...]
Completed in 85 milliseconds