/external/elfutils/tests/ |
D | run-exprlocs.sh | 46 producer (strp) 49 name (strp) 50 comp_dir (strp) 57 name (strp) 59 name (strp) 65 name (strp) 71 name (strp) 81 name (strp) 86 name (strp) 96 name (strp) [all …]
|
D | run-readelf-dwz-multi.sh | 88 …producer (strp) "GNU C 4.7.0 20120507 (Red Hat 4.7.0-5) -mtune=generic -march=x86-64 -… 90 name (strp) "main.c" 102 name (strp) "main" 114 name (strp) "argc" 121 name (strp) "argv" 149 …producer (strp) "GNU C 4.7.0 20120507 (Red Hat 4.7.0-5) -mtune=generic -march=x86-64 -… 151 name (strp) "main.c" 163 name (strp) "main" 175 name (strp) "argc" 182 name (strp) "argv" [all …]
|
D | run-readelf-zdebug-rel.sh | 55 …producer (strp) "GNU C11 5.3.1 20151207 (Red Hat 5.3.1-2) -mtune=generic -march=x86-64… 57 name (strp) "testfile-zdebug-rel.c" 58 comp_dir (strp) "/tmp" 64 name (strp) "main" 76 name (strp) "argc" 82 name (strp) "argv" 114 name (strp) "char" 118 name (strp) "long unsigned int" 160 …producer (strp) "GNU C11 7.3.1 20180712 (Red Hat 7.3.1-6) -Asystem=linux -Asystem=unix… 162 name (strp) "testfile-zdebug-rel.c" [all …]
|
D | run-readelf-const-values.sh | 68 …producer (strp) "GNU C11 7.3.1 20180303 (Red Hat 7.3.1-5) -mtune=generic -march=x86-64… 71 comp_dir (strp) "/home/mark/build/elfutils-obj" 106 …producer (strp) "GNU C11 7.3.1 20180303 (Red Hat 7.3.1-5) -mtune=generic -march=x86-64… 109 comp_dir (strp) "/home/mark/build/elfutils-obj" 115 name (strp) "main" 186 name (strp) "signed char" 192 name (strp) "unsigned char" 198 name (strp) "short int" 204 name (strp) "short unsigned int" 210 name (strp) "unsigned int" [all …]
|
D | run-readelf-ranges.sh | 194 dwo_name (strp) "testfile-hello5.dwo" 195 comp_dir (strp) "/home/mark/src/elfutils/tests" 205 dwo_name (strp) "testfile-world5.dwo" 206 comp_dir (strp) "/home/mark/src/elfutils/tests"
|
D | run-readelf-types.sh | 31 …producer (strp) "GNU C++ 4.8.2 20140120 (Red Hat 4.8.2-16) -mtune=generic -march=x86-6… 33 comp_dir (strp) "/home/mark/src/elfutils/tests" 39 name (strp) "main"
|
D | run-readelf-loc.sh | 921 GNU_dwo_name (strp) "splitdwarf4-not-split4.dwo" 922 comp_dir (strp) "/tmp" 1006 …producer (strp) "GNU C17 9.0.0 20180528 (experimental) -mtune=generic -march=x86-64 -g… 1008 name (strp) "popcount.c" 1009 comp_dir (strp) "/tmp" 1015 name (strp) "popcount" 1048 name (strp) "unsigned char"
|
/external/grpc-grpc/src/core/lib/gpr/ |
D | string_posix.cc | 30 int gpr_asprintf(char** strp, const char* format, ...) { in gpr_asprintf() argument 41 *strp = nullptr; in gpr_asprintf() 47 if ((*strp = static_cast<char*>(gpr_malloc(strp_buflen))) == nullptr) { in gpr_asprintf() 54 memcpy(*strp, buf, strp_buflen); in gpr_asprintf() 60 ret = vsnprintf(*strp, strp_buflen, format, args); in gpr_asprintf() 67 gpr_free(*strp); in gpr_asprintf() 68 *strp = nullptr; in gpr_asprintf()
|
D | string_windows.cc | 34 int gpr_asprintf(char** strp, const char* format, ...) { in gpr_asprintf() argument 44 *strp = NULL; in gpr_asprintf() 50 if ((*strp = (char*)gpr_malloc(strp_buflen)) == NULL) { in gpr_asprintf() 57 ret = vsnprintf_s(*strp, strp_buflen, _TRUNCATE, format, args); in gpr_asprintf() 64 gpr_free(*strp); in gpr_asprintf() 65 *strp = NULL; in gpr_asprintf()
|
/external/icu/icu4c/source/tools/tzcode/ |
D | localtime.c | 136 static const char * getzname(const char * strp) ATTRIBUTE_PURE; 137 static const char * getqzname(const char * strp, const int delim) 139 static const char * getnum(const char * strp, int * nump, int min, 141 static const char * getsecs(const char * strp, int_fast32_t * secsp); 142 static const char * getoffset(const char * strp, int_fast32_t * offsetp); 143 static const char * getrule(const char * strp, struct rule * rulep); 649 getzname(register const char *strp) in getzname() argument 653 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' && in getzname() 655 ++strp; in getzname() 656 return strp; in getzname() [all …]
|
/external/dtc/tests/ |
D | setprop_inplace.c | 38 const char *strp; in main() local 56 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, in main() 70 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, in main() 73 verbose_printf("Old string value was \"%s\"\n", strp); in main() 74 xstr = strdup(strp); in main() 83 strp = check_getprop(fdt, 0, "prop-str", xlen+1, xstr); in main() 84 verbose_printf("New string value is \"%s\"\n", strp); in main()
|
D | nop_property.c | 36 const char *strp; in main() local 56 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, in main() 58 verbose_printf("string value was \"%s\"\n", strp); in main() 63 strp = fdt_getprop(fdt, 0, "prop-str", &lenerr); in main() 64 if (strp) in main()
|
D | del_property.c | 36 const char *strp; in main() local 61 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, in main() 63 verbose_printf("string value was \"%s\"\n", strp); in main() 68 strp = fdt_getprop(fdt, 0, "prop-str", &lenerr); in main() 69 if (strp) in main()
|
D | setprop.c | 40 const char *strp; in main() local 62 strp = check_getprop_string(fdt, 0, "prop-int", NEW_STRING); in main() 63 verbose_printf("New value is \"%s\"\n", strp); in main() 65 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, in main() 68 verbose_printf("Old string value was \"%s\"\n", strp); in main()
|
/external/selinux/libselinux/src/android/ |
D | android.c | 149 char *strp; in selinux_log_callback() local 164 if (vasprintf(&strp, fmt, ap) != -1) { in selinux_log_callback() 165 LOG_PRI(priority, "SELinux", "%s", strp); in selinux_log_callback() 166 LOG_EVENT_STRING(AUDITD_LOG_TAG, strp); in selinux_log_callback() 167 free(strp); in selinux_log_callback() 177 char *strp; in selinux_vendor_log_callback() local 192 if (vasprintf(&strp, fmt, ap) != -1) { in selinux_vendor_log_callback() 193 LOG_PRI(priority, "SELinux", "%s", strp); in selinux_vendor_log_callback() 194 free(strp); in selinux_vendor_log_callback()
|
/external/libcxx/include/support/ibm/ |
D | xlocale.h | 248 int vasprintf(char **strp, const char *fmt, va_list ap) in vasprintf() argument 252 if ((*strp = (char *)malloc(buff_size)) == NULL) in vasprintf() 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size) in vasprintf() 258 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL) in vasprintf() 262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap); in vasprintf()
|
/external/elfutils/libdw/ |
D | dwarf_macro_param2.c | 38 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp) in dwarf_macro_param2() argument 50 *strp = dwarf_formstring (¶m); in dwarf_macro_param2()
|
/external/ltp/include/ |
D | tst_safe_stdio.h | 31 #define SAFE_ASPRINTF(strp, fmt, ...) \ argument 32 safe_asprintf(__FILE__, __LINE__, NULL, strp, fmt, __VA_ARGS__)
|
/external/ltp/include/old/ |
D | old_safe_stdio.h | 31 #define SAFE_ASPRINTF(cleanup_fn, strp, fmt, ...) \ argument 32 safe_asprintf(__FILE__, __LINE__, cleanup_fn, strp, fmt, __VA_ARGS__)
|
/external/libcap/libcap/ |
D | cap_text.c | 63 static int lookupname(char const **strp) in lookupname() argument 70 str.constp = *strp; in lookupname() 75 *strp = str.constp; in lookupname() 92 *strp = str.constp + len; in lookupname() 101 *strp = s; in lookupname()
|
/external/selinux/libsepol/cil/src/ |
D | cil_mem.c | 103 __attribute__ ((format (printf, 2, 3))) int cil_asprintf(char **strp, const char *fmt, ...) in cil_asprintf() argument 109 rc = vasprintf(strp, fmt, ap); in cil_asprintf()
|
D | cil_mem.h | 38 int cil_asprintf(char **strp, const char *fmt, ...);
|
/external/ltp/lib/ |
D | safe_stdio.c | 56 char **strp, const char *fmt, ...) in safe_asprintf() argument 62 ret = vasprintf(strp, fmt, va); in safe_asprintf()
|
/external/conscrypt/common/src/jni/main/include/conscrypt/ |
D | compat.h | 80 inline int asprintf(char **strp, const char *fmt, ...) { in asprintf() argument 83 int r = vasprintf(strp, fmt, ap); in asprintf()
|
/external/grpc-grpc/include/grpc/support/ |
D | string_util.h | 44 GPRAPI int gpr_asprintf(char** strp, const char* format, ...)
|