Home
last modified time | relevance | path

Searched refs:str_size (Results 1 – 4 of 4) sorted by relevance

/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
DIPACM_Xml.cpp155 int str_size; in ipacm_cfg_xml_parse_tree() local
206 str_size = strlen(content); in ipacm_cfg_xml_parse_tree()
208 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree()
227 str_size = strlen(content); in ipacm_cfg_xml_parse_tree()
229 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree()
230 if (0 == strncasecmp(content_buf, ODU_ROUTER_TAG, str_size)) in ipacm_cfg_xml_parse_tree()
235 else if (0 == strncasecmp(content_buf, ODU_BRIDGE_TAG, str_size)) in ipacm_cfg_xml_parse_tree()
248 str_size = strlen(content); in ipacm_cfg_xml_parse_tree()
250 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree()
268 str_size = strlen(content); in ipacm_cfg_xml_parse_tree()
[all …]
/hardware/qcom/sm8150/data/ipacfg-mgr/ipacm/src/
DIPACM_Xml.cpp167 int str_size; in ipacm_cfg_xml_parse_tree() local
218 str_size = strlen(content); in ipacm_cfg_xml_parse_tree()
220 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree()
239 str_size = strlen(content); in ipacm_cfg_xml_parse_tree()
241 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree()
242 if (0 == strncasecmp(content_buf, ODU_ROUTER_TAG, str_size)) in ipacm_cfg_xml_parse_tree()
247 else if (0 == strncasecmp(content_buf, ODU_BRIDGE_TAG, str_size)) in ipacm_cfg_xml_parse_tree()
260 str_size = strlen(content); in ipacm_cfg_xml_parse_tree()
262 memcpy(content_buf, (void *)content, str_size); in ipacm_cfg_xml_parse_tree()
280 str_size = strlen(content); in ipacm_cfg_xml_parse_tree()
[all …]
/hardware/google/gfxstream/guest/mesa/src/util/
Dralloc.c433 size_t existing_length, size_t str_size) in ralloc_str_append() argument
438 both = resize(*dest, existing_length + str_size + 1); in ralloc_str_append()
442 memcpy(both + existing_length, str, str_size); in ralloc_str_append()
443 both[existing_length + str_size] = '\0'; in ralloc_str_append()
Dralloc.h373 size_t existing_length, size_t str_size);