HomeSort by relevance Sort by last modified time
    Searched defs:prop_ptr (Results 1 - 2 of 2) sorted by null

  /system/libufdt/
ufdt_prop_dict.c 50 const struct fdt_property **prop_ptr = &dict->props[idx]; local
51 const struct fdt_property *prop = *prop_ptr;
52 if (prop == NULL) return prop_ptr;
55 if (dto_strcmp(prop_name, name) == 0) return prop_ptr;
130 const struct fdt_property **prop_ptr = _ufdt_prop_dict_find_index(dict, prop); local
131 if (prop_ptr == NULL) {
136 if (*prop_ptr == NULL) dict->num_used++;
137 *prop_ptr = prop;
144 const struct fdt_property **prop_ptr = local
146 return prop_ptr ? *prop_ptr : NULL
    [all...]
ufdt_overlay.c 131 char *path, *prop_ptr, *offset_ptr, *end_ptr; local
140 prop_ptr = dto_strchr(path, ':');
141 if (prop_ptr == NULL) {
146 *prop_ptr = '\0';
147 prop_ptr++;
149 offset_ptr = dto_strchr(prop_ptr, ':');
172 ufdt_node_get_fdt_prop_data_by_name(target_node, prop_ptr, &prop_len);
174 dto_error("Property '%s' not found in '%s' node\n", prop_ptr, path);

Completed in 115 milliseconds