Searched refs:commaPos (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/
H A DDataURISource.cpp31 const char *commaPos = strrchr(uri, ','); local
33 if (commaPos == NULL) {
39 AString tmp(&uri[5], commaPos - &uri[5]);
42 AString encoded(commaPos + 1);
62 memcpy(buffer->data(), commaPos + 1, dataLen);
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.cpp132 ssize_t commaPos = val.find(",", start); local
133 size_t end = (commaPos < 0) ? val.size() : commaPos;
158 if (commaPos < 0) {
162 start = commaPos + 1;
/frameworks/base/tools/bit/
H A Dmain.cpp465 size_t commaPos; local
467 commaPos = arg.find(',', beginPos);
468 if (commaPos == string::npos) {
470 target->actions.push_back(string(arg, beginPos, commaPos));
474 if (commaPos != beginPos) {
475 target->actions.push_back(string(arg, beginPos, commaPos-beginPos));
477 beginPos = commaPos+1;
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp441 ssize_t commaPos = -1; local
443 while ((commaPos = codecs.find(",", offset)) >= 0) {
444 AString codec(codecs, offset, commaPos - offset);
451 offset = commaPos + 1;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp785 const char *commaPos = strchr(s, ','); local
786 if (commaPos != NULL) {
787 s = commaPos + 1;

Completed in 169 milliseconds