Home
last modified time | relevance | path

Searched refs:xstrdup (Results 1 – 25 of 88) sorted by relevance

1234

/OK3568_Linux_fs/kernel/scripts/kconfig/
H A Dpreprocess.c49 e->name = xstrdup(name); in env_add()
50 e->value = xstrdup(value); in env_add()
74 return xstrdup(e->value); in env_expand()
87 return xstrdup(value); in env_expand()
117 return xstrdup(""); in do_error_if()
122 return xstrdup(current_file->name); in do_filename()
129 return xstrdup(""); in do_info()
138 return xstrdup(buf); in do_lineno()
178 return xstrdup(buf); in do_shell()
187 return xstrdup(""); in do_warning_if()
[all …]
H A Dutil.c25 file->name = xstrdup(name); in file_lookup()
109 char *xstrdup(const char *s) in xstrdup() function
/OK3568_Linux_fs/u-boot/scripts/dtc/
H A Ddtc-lexer.l100 srcpos_set_line(xstrdup(fn.val), atoi(line) - 1);
157 yylval.labelref = xstrdup(yytext);
207 yylval.labelref = xstrdup(yytext+1);
214 yylval.labelref = xstrdup(yytext+2);
232 yylval.propnodename = xstrdup((yytext[0] == '\\') ?
H A Dfstree.c61 prop = build_property(xstrdup(de->d_name), in read_fstree()
71 newchild = name_node(newchild, xstrdup(de->d_name)); in read_fstree()
H A Dsrcpos.c76 fullname = xstrdup(fname); in try_open()
124 fullname = xstrdup("<stdin>"); in srcfile_relative_open()
190 node->dirname = xstrdup(dirname); in srcfile_add_search_path()
H A Ddtc-lexer.lex.c
H A Dutil.h69 extern char *xstrdup(const char *s);
/OK3568_Linux_fs/kernel/scripts/dtc/
H A Ddtc-lexer.l85 srcpos_set_line(xstrdup(fn.val), atoi(line) - 1);
149 yylval.labelref = xstrdup(yytext);
199 yylval.labelref = xstrdup(yytext+1);
206 yylval.labelref = xstrdup(yytext+2);
224 yylval.propnodename = xstrdup((yytext[0] == '\\') ?
H A Dfstree.c46 prop = build_property(xstrdup(de->d_name), in read_fstree()
57 newchild = name_node(newchild, xstrdup(de->d_name)); in read_fstree()
H A Dsrcpos.c105 fullname = xstrdup(fname); in try_open()
153 fullname = xstrdup("<stdin>"); in srcfile_relative_open()
222 node->dirname = xstrdup(dirname); in srcfile_add_search_path()
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/busybox/busybox/
H A D0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch25 - return xstrdup(host);
26 + return xstrdup(printable_string(host));
36 /*return xstrdup(host);*/
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/liboauth/liboauth/
H A D0001-Support-OpenSSL-1.1.0.patch40 return xstrdup("liboauth/OpenSSL: can not read private key");
45 + return xstrdup("liboauth/OpenSSL: failed to allocate EVP_MD_CTX");
66 return xstrdup("liboauth/OpenSSL: rsa-sha1 signing failed");
113 + return xstrdup("liboauth/OpenSSL: failed to allocate EVP_MD_CTX");
143 + return xstrdup("liboauth/OpenSSL: failed to allocate EVP_MD_CTX");
/OK3568_Linux_fs/buildroot/package/liboauth/
H A D0001-Fixes-build-issue-with-OpenSSL-1.1.0.patch42 return xstrdup("liboauth/OpenSSL: can not read private key");
47 + return xstrdup("liboauth/OpenSSL: failed to allocate EVP_MD_CTX");
68 return xstrdup("liboauth/OpenSSL: rsa-sha1 signing failed");
115 + return xstrdup("liboauth/OpenSSL: failed to allocate EVP_MD_CTX");
145 + return xstrdup("liboauth/OpenSSL: failed to allocate EVP_MD_CTX");
/OK3568_Linux_fs/buildroot/support/kconfig/patches/
H A D01-kconfig-kernel-to-buildroot.patch55 - menu_add_prompt(P_MENU, xstrdup("Linux Kernel Configuration"), NULL);
56 + menu_add_prompt(P_MENU, xstrdup("Buildroot Configuration"), NULL);
68 - menu_add_prompt(P_MENU, xstrdup("Linux Kernel Configuration"), NULL);
69 + menu_add_prompt(P_MENU, xstrdup("Buildroot Configuration"), NULL);
/OK3568_Linux_fs/buildroot/package/busybox/
H A D0003-libbb-sockaddr2str-ensure-only-printable-characters-.patch26 - return xstrdup(host);
27 + return xstrdup(printable_string(host));
37 /*return xstrdup(host);*/
H A D0006-Support-PARTLABEL.patch141 - uuidcache_addentry(xstrdup(device), /*ma, mi,*/ label, uuid, type);
142 + uuidcache_addentry(xstrdup(device), /*ma, mi,*/ label, partlabel, uuid, type);
157 + return xstrdup(uc->device);
/OK3568_Linux_fs/external/mpp/utils/
H A Ddictionary.c46 static char * xstrdup(const char * s) in xstrdup() function
274 d->val[i] = (val ? xstrdup(val) : NULL); in dictionary_set()
296 d->key[i] = xstrdup(key); in dictionary_set()
297 d->val[i] = (val ? xstrdup(val) : NULL) ; in dictionary_set()
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/man-db/files/
H A D0001-man-Move-local-variable-declaration-to-function-scop.patch35 - char *s = xstrdup
36 + s = xstrdup
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/makedevs/makedevs/
H A Dmakedevs.c99 static char *xstrdup(const char *s) in xstrdup() function
381 name = xstrdup(path + 1); in interpret_table_entry()
547 rootdir = xstrdup(""); in main()
549 rootdir = xstrdup(optarg); in main()
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0142-grub-install-common-Add-sbat-option.patch51 pubkeys[npubkeys++] = xstrdup (arg);
57 + sbat = xstrdup (arg);
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/
H A Dldconfig.patch12 xstrdup.c | 11 --
449 Index: ldconfig-native-2.12.1/xstrdup.c
451 --- ldconfig-native-2.12.1.orig/xstrdup.c
452 +++ ldconfig-native-2.12.1/xstrdup.c
470 char *xstrdup (char *string) __THROW;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/tftp-hpa/files/
H A Dtftp-0.49-cmd_arg.patch15 char *xstrdup(const char *);
26 PA_SEARCH_LIBS_AND_ADD(xstrdup, iberty)
/OK3568_Linux_fs/kernel/scripts/genksyms/
H A Dgenksyms.h76 #define xstrdup(str) ({ char *__str = strdup(str); \ macro
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/
H A Dldconfig-native_2.12.1.bb30 …$CC ldconfig.c -std=gnu99 chroot_canon.c xmalloc.c xstrdup.c cache.c readlib.c -I. dl-cache.c -o …
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/rpm/files/
H A D0001-build-pack.c-do-not-insert-payloadflags-into-.rpm-me.patch22 buf = xstrdup(rpmio_flags);

1234