Searched defs:strp (Results 1 - 14 of 14) sorted by relevance

/external/elfutils/0.153/libdw/
H A Ddwarf_macro_param2.c59 dwarf_macro_param2 (Dwarf_Macro *macro, Dwarf_Word *paramp, const char **strp) argument
66 if (strp != NULL)
67 *strp = macro->param2.s;
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dgenstring.c40 char *strp; local
72 strp = str;
75 len = strlen(strp);
76 while (len > 0 && (strp[len-1] == ' ' || strp[len-1] == '\t' ||
77 strp[len-1] == '\n')) {
78 strp[len-1] = '\0';
84 while (*strp != '\0') {
85 if (*strp == '\\' || *strp
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genmacro/
H A Dgenmacro.c40 char *strp; local
80 strp = str;
83 charp = strp;
100 while (*strp == ' ' || *strp == '\t')
101 strp++;
102 len = strlen(strp);
103 while (len > 0 && (strp[len-1] == ' ' || strp[len-1] == '\t' ||
104 strp[le
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dgenmodule.c52 char *strp; local
97 strp = &str[len-1];
98 while (len > 0 && isspace(*strp)) {
99 *strp-- = '\0';
104 strp = str;
107 while (isspace(*strp))
108 strp++;
111 if (*strp == '#')
119 if (isam && strncmp(strp, "include", 7) == 0 && isspace(strp[
[all...]
/external/libcxx/include/support/ibm/
H A Dxlocale.h303 int vasprintf(char **strp, const char *fmt, va_list ap) argument
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);
/external/libselinux/src/
H A Dandroid.c1420 char *strp; local
1435 if (vasprintf(&strp, fmt, ap) != -1) {
1436 LOG_PRI(priority, "SELinux", "%s", strp);
1437 LOG_EVENT_STRING(AUDITD_LOG_TAG, strp);
1438 free(strp);
/external/mksh/src/
H A Dlex.c1659 arraysub(char **strp) argument
1679 *strp = Xclose(ws, wp);
/external/valgrind/main/coregrind/
H A Dm_redir.c803 const HChar** strp; local
831 for (strp = sp->mandatory; *strp; strp++)
833 "%s%s\n", v, *strp);
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dlocaltime.c142 static const char * getzname(const char * strp);
143 static const char * getqzname(const char * strp, const int delim);
144 static const char * getnum(const char * strp, int * nump, int min,
146 static const char * getsecs(const char * strp, long * secsp);
147 static const char * getoffset(const char * strp, long * offsetp);
148 static const char * getrule(const char * strp, struct rule * rulep);
619 getzname(strp)
620 register const char * strp;
624 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
626 ++strp;
640 getqzname(register const char *strp, const int delim) argument
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c142 static const char * getzname(const char * strp);
143 static const char * getqzname(const char * strp, const int delim);
144 static const char * getnum(const char * strp, int * nump, int min,
146 static const char * getsecs(const char * strp, long * secsp);
147 static const char * getoffset(const char * strp, long * offsetp);
148 static const char * getrule(const char * strp, struct rule * rulep);
619 getzname(strp)
620 register const char * strp;
624 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
626 ++strp;
640 getqzname(register const char *strp, const int delim) argument
[all...]
/external/qemu/audio/
H A Daudio.c509 const char **strp = opt->valp; local
512 *strp ? *strp : "(not set)");
592 const char **strp = opt->valp; local
593 *strp = audio_get_conf_str (optname, *strp, &def);
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c296 freep(char **strp) argument
298 if (strp && *strp) {
299 free(*strp);
300 *strp = 0;
/external/libedit/src/
H A Dreadline.c1603 const char *strp; local
1611 if ((strp = strstr(ev.str, str)) != NULL)
1612 return (int)(strp - ev.str);
/external/svox/pico/lib/
H A Dpicopr.c865 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
2882 strp = picokpr_getVarStrPtr(path->rele[li].rnetwork, path->rele[li].rprodname);
2884 picoos_strcat(str, strp);

Completed in 248 milliseconds