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

/external/boringssl/src/crypto/evp/
H A Dp_dsa_asn1.c76 ASN1_STRING *pstr; local
88 pstr = pval;
89 pm = pstr->data;
90 pmlen = pstr->length;
163 ASN1_STRING *pstr; local
229 pstr = pval;
230 pm = pstr->data;
231 pmlen = pstr->length;
H A Dp_ec_asn1.c134 ASN1_STRING *pstr = pval; local
135 const uint8_t *pm = pstr->data;
136 int pmlen = pstr->length;
/external/toybox/toys/posix/
H A Dsed.c700 // returns processed copy of string (0 if error), *pstr advances to next
703 static char *unescape_delimited_string(char **pstr, char *delim, int regex) argument
707 to = from = *pstr;
714 to = delim = xmalloc(strlen(*pstr)+1);
743 *pstr = from+1;
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_bstring.cpp723 FX_LPCSTR pstr = m_pData->m_String; local
729 FXSYS_memmove32(m_pData->m_String, pstr, (pOldData->m_nDataLength + 1));
H A Dfx_basic_wstring.cpp654 FX_LPCWSTR pstr = m_pData->m_String; local
659 FXSYS_memcpy32(m_pData->m_String, pstr, pOldData->m_nDataLength * sizeof(FX_WCHAR));
692 FX_LPCWSTR pstr = m_pData->m_String; local
698 FXSYS_memmove32(m_pData->m_String, pstr, (pOldData->m_nDataLength + 1)*sizeof(FX_WCHAR));
/external/libvncserver/x11vnc/
H A Dconnections.c4224 static char *pstr = NULL; local
4231 if (!pstr) {
4232 pstr = (char *)malloc(len);
4235 free(pstr);
4237 pstr = (char *)malloc(len);
4239 strcpy(pstr, str);
4240 strcat(pstr, "\n");
4244 fprintf(icon_mode_fh, "%s", pstr);
4250 char *buf = pstr;
4256 len = strlen(pstr);
[all...]
H A Dx11vnc.c4295 char *pstr = "%VNCDISPLAY"; local
4296 if (strstr(logfile, pstr)) {
4312 char *t = strstr(q, pstr);
4317 newlog = (char *) malloc(strlen(logfile) + n * strlen(pstr));
4322 char *t = strstr(q, pstr);
4329 q = t + strlen(pstr);
4338 pstr = "%HOME";
4339 if (strstr(logfile, pstr)) {
4348 char *t = strstr(q, pstr);
4353 newlog = (char *) malloc(strlen(logfile) + n * strlen(pstr));
[all...]
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest.cc4575 // If *pstr starts with the given prefix, modifies *pstr to be right
4576 // past the prefix and returns true; otherwise leaves *pstr unchanged
4577 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4578 bool SkipPrefix(const char* prefix, const char** pstr) { argument
4580 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4581 *pstr += prefix_len;
/external/gtest/src/
H A Dgtest.cc4660 // If *pstr starts with the given prefix, modifies *pstr to be right
4661 // past the prefix and returns true; otherwise leaves *pstr unchanged
4662 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4663 bool SkipPrefix(const char* prefix, const char** pstr) { argument
4665 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4666 *pstr += prefix_len;
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc4513 // If *pstr starts with the given prefix, modifies *pstr to be right
4514 // past the prefix and returns true; otherwise leaves *pstr unchanged
4515 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4516 bool SkipPrefix(const char* prefix, const char** pstr) { argument
4518 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4519 *pstr += prefix_len;
/external/mesa3d/src/gtest/src/
H A Dgtest.cc4543 // If *pstr starts with the given prefix, modifies *pstr to be right
4544 // past the prefix and returns true; otherwise leaves *pstr unchanged
4545 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4546 bool SkipPrefix(const char* prefix, const char** pstr) { argument
4548 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4549 *pstr += prefix_len;
/external/protobuf/gtest/src/
H A Dgtest.cc4357 // If *pstr starts with the given prefix, modifies *pstr to be right
4358 // past the prefix and returns true; otherwise leaves *pstr unchanged
4359 // and returns false. None of pstr, *pstr, and prefix can be NULL.
4360 bool SkipPrefix(const char* prefix, const char** pstr) { argument
4362 if (strncmp(*pstr, prefix, prefix_len) == 0) {
4363 *pstr += prefix_len;
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc6144 // If *pstr starts with the given prefix, modifies *pstr to be right
6145 // past the prefix and returns true; otherwise leaves *pstr unchanged
6146 // and returns false. None of pstr, *pstr, and prefix can be NULL.
6147 bool SkipPrefix(const char* prefix, const char** pstr) { argument
6149 if (strncmp(*pstr, prefix, prefix_len) == 0) {
6150 *pstr += prefix_len;
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest-all.cc5697 // If *pstr starts with the given prefix, modifies *pstr to be right
5698 // past the prefix and returns true; otherwise leaves *pstr unchanged
5699 // and returns false. None of pstr, *pstr, and prefix can be NULL.
5700 bool SkipPrefix(const char* prefix, const char** pstr) { argument
5702 if (strncmp(*pstr, prefix, prefix_len) == 0) {
5703 *pstr += prefix_len;

Completed in 1077 milliseconds