Home
last modified time | relevance | path

Searched refs:new_str (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/u-boot/lib/avb/libavb/
H A Davb_util.c299 char* new_str; in avb_replace() local
301 new_str = avb_malloc(num_new); in avb_replace()
302 if (new_str == NULL) { in avb_replace()
305 avb_memcpy(new_str, ret, ret_len); in avb_replace()
306 avb_memcpy(new_str + ret_len, str, num_before); in avb_replace()
307 avb_memcpy(new_str + ret_len + num_before, replace, replace_len); in avb_replace()
308 new_str[num_new - 1] = '\0'; in avb_replace()
310 ret = new_str; in avb_replace()
326 char* new_str = avb_malloc(num_new); in avb_replace() local
327 if (new_str == NULL) { in avb_replace()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/
H A Dpkgconfig.patch80 - char *new_str;
84 - new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
85 - strcpy (new_str, str);
88 - new_str = NULL;
90 - return new_str;
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bs4/builder/
H A D_html5lib.py245 new_str = self.soup.new_string(old_node + node.element)
246 old_node.replace_with(new_str)
/OK3568_Linux_fs/buildroot/support/kconfig/
H A Dnconf.c569 char new_str[256]; in item_add_str() local
576 vsnprintf(new_str, sizeof(new_str), fmt, ap); in item_add_str()
579 k_menu_items[index].str, new_str); in item_add_str()
/OK3568_Linux_fs/kernel/scripts/kconfig/
H A Dnconf.c569 char new_str[256]; in item_add_str() local
576 vsnprintf(new_str, sizeof(new_str), fmt, ap); in item_add_str()
579 k_menu_items[index].str, new_str); in item_add_str()
/OK3568_Linux_fs/u-boot/scripts/kconfig/
H A Dnconf.c569 char new_str[256]; in item_add_str() local
576 vsnprintf(new_str, sizeof(new_str), fmt, ap); in item_add_str()
579 k_menu_items[index].str, new_str); in item_add_str()
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dpmu.c241 char **new_str) in perf_pmu_assign_str() argument
246 if (*new_str) { /* Have new string, check with old */ in perf_pmu_assign_str()
247 if (strcasecmp(*old_str, *new_str)) in perf_pmu_assign_str()
254 *old_str = *new_str; in perf_pmu_assign_str()
255 *new_str = NULL; in perf_pmu_assign_str()
/OK3568_Linux_fs/u-boot/fs/yaffs2/
H A Dyaffs_guts.c2025 YCHAR *new_str = NULL; in yaffs_clone_str() local
2032 new_str = kmalloc((len + 1) * sizeof(YCHAR), GFP_NOFS); in yaffs_clone_str()
2033 if (new_str) { in yaffs_clone_str()
2034 yaffs_strncpy(new_str, str, len); in yaffs_clone_str()
2035 new_str[len] = 0; in yaffs_clone_str()
2037 return new_str; in yaffs_clone_str()
/OK3568_Linux_fs/buildroot/package/oracle-mysql/
H A D0005-bison_3_breaks_mysql_server_build.patch3097 - String *new_str = new (YYTHD->mem_root) String((const char*) $1.str,$1.length,system_c…
3098 + String *new_str = new (thd->mem_root) String((const char*) $1.str,$1.length,system_cha…
3099 if (new_str == NULL)