HomeSort by relevance Sort by last modified time
    Searched refs:strp (Results 1 - 24 of 24) sorted by null

  /external/elfutils/src/libdw/
dwarf_macro_param2.c 38 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp)
50 *strp = dwarf_formstring (&param);
libdw.h     [all...]
known-dwarf.h 286 ONE_KNOWN_DW_FORM (strp, DW_FORM_strp) \
    [all...]
  /external/elfutils/src/tests/
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 -g"
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 -g"
151 name (strp) "main.c"
163 name (strp) "main"
175 name (strp) "argc"
182 name (strp) "argv
    [all...]
  /system/core/logd/
LogWhiteBlackList.h 46 // *strp is malloc'd, use free to release
47 void format(char **strp);
69 // *strp is malloc'd, use free to release
70 void format(char **strp);
LogWhiteBlackList.cpp 38 void Prune::format(char **strp) {
41 asprintf(strp, "%u/%u", mUid, mPid);
43 asprintf(strp, "%u", mUid);
46 asprintf(strp, "/%u", mPid);
48 asprintf(strp, "/");
176 void PruneList::format(char **strp) {
177 if (*strp) {
178 free(*strp);
179 *strp = NULL;
216 *strp = strdup(string.string())
    [all...]
LogBuffer.h 63 // *strp uses malloc, use free to release.
64 void formatStatistics(char **strp, uid_t uid, unsigned int logMask);
71 // *strp uses malloc, use free to release.
72 void formatPrune(char **strp) { mPrune.format(strp); }
CommandListener.cpp 194 static void package_string(char **strp) {
195 const char *a = *strp;
206 char *b = *strp;
207 *strp = NULL;
208 asprintf(strp, fmt, a);
LogBuffer.cpp 673 void LogBuffer::formatStatistics(char **strp, uid_t uid, unsigned int logMask) {
676 stats.format(strp, uid, logMask);
LogStatistics.h 334 // *strp = malloc, balance with free
335 void format(char **strp, uid_t uid, unsigned int logMask);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vswscanf.c 61 const wchar_t *strp; local
71 strp = str;
72 if ((mlen = wcsrtombs(mbstr, &strp, len, &mbs)) == (size_t)-1) {
  /bionic/libc/tzcode/
localtime.c 152 static const char * getzname(const char * strp) ATTRIBUTE_PURE;
153 static const char * getqzname(const char * strp, const int delim)
155 static const char * getnum(const char * strp, int * nump, int min,
157 static const char * getsecs(const char * strp, int_fast32_t * secsp);
158 static const char * getoffset(const char * strp, int_fast32_t * offsetp);
159 static const char * getrule(const char * strp, struct rule * rulep);
662 getzname(register const char * strp)
666 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
668 ++strp;
669 return strp;
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
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)
653 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
655 ++strp;
656 return strp;
    [all...]
  /ndk/sources/android/support/src/
locale_support.c 51 int vasprintf_l(char** strp, locale_t l, const char* fmt, va_list args) {
53 return vasprintf(strp, fmt, args);
56 int asprintf_l(char** strp, locale_t locale, const char* fmt, ...) {
59 int result = vasprintf_l(strp, locale, fmt, args);
  /external/libcxx/include/support/ibm/
xlocale.h 303 int vasprintf(char **strp, const char *fmt, va_list ap)
307 if ((*strp = (char *)malloc(buff_size)) == NULL)
311 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL)
317 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
xlocale.h 303 int vasprintf(char **strp, const char *fmt, va_list ap)
307 if ((*strp = (char *)malloc(buff_size)) == NULL)
311 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL)
317 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/
xlocale.h 303 int vasprintf(char **strp, const char *fmt, va_list ap)
307 if ((*strp = (char *)malloc(buff_size)) == NULL)
311 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL)
317 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /system/core/toolbox/
ps.c 15 static char *nexttoksep(char **strp, char *sep)
17 char *p = strsep(strp,sep);
20 static char *nexttok(char **strp)
22 return nexttoksep(strp, " ");
  /external/libselinux/src/
android.c 1533 char *strp; local
    [all...]
  /external/valgrind/coregrind/
m_redir.c 840 const HChar** strp; local
    [all...]
  /external/libedit/src/
readline.c 1603 const char *strp; local
    [all...]
  /external/mksh/src/
lex.c     [all...]
  /external/svox/pico/lib/
picopr.c 865 picokpr_VarStrPtr strp; local
890 strp = picokpr_getVarStrPtr(net, picokpr_getProdNameOfs(net, i));
892 while ((i < lprodarrlen) && !(pr_strEqual(prodNamePtr, strp))) {
895 strp = picokpr_getVarStrPtr(net, picokpr_getProdNameOfs(net, i));
2850 picoos_uchar * strp; local
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 296 freep(char **strp)
298 if (strp && *strp) {
299 free(*strp);
300 *strp = 0;
    [all...]

Completed in 574 milliseconds