OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ATTRIBUTE_VALUE_DELIM
(Results
1 - 6
of
6
) sorted by null
/device/google/marlin/power/
metadata-defs.h
30
#define
ATTRIBUTE_VALUE_DELIM
('=')
metadata-parser.c
40
char *
attribute_value_delim
;
local
51
if ((
attribute_value_delim
= strchr(attribute_string,
52
ATTRIBUTE_VALUE_DELIM
)) != NULL) {
53
unsigned int attribute_len = (unsigned int) (
attribute_value_delim
- attribute_string);
58
strlcpy(value,
attribute_value_delim
+ 1, value_size);
/device/huawei/angler/power/
metadata-defs.h
30
#define
ATTRIBUTE_VALUE_DELIM
('=')
metadata-parser.c
40
char *
attribute_value_delim
;
local
51
if ((
attribute_value_delim
= strchr(attribute_string,
52
ATTRIBUTE_VALUE_DELIM
)) != NULL) {
53
bytes_to_copy = MIN((
attribute_value_delim
- attribute_string),
61
strncpy(value,
attribute_value_delim
+ 1,
/device/lge/bullhead/power/
metadata-defs.h
30
#define
ATTRIBUTE_VALUE_DELIM
('=')
metadata-parser.c
40
char *
attribute_value_delim
;
local
51
if ((
attribute_value_delim
= strchr(attribute_string,
52
ATTRIBUTE_VALUE_DELIM
)) != NULL) {
53
bytes_to_copy = MIN((
attribute_value_delim
- attribute_string),
61
strncpy(value,
attribute_value_delim
+ 1,
Completed in 273 milliseconds