HomeSort by relevance Sort by last modified time
    Searched refs:get_size (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/opencore/oscl/oscl/osclutil/src/
oscl_string.cpp 59 if (index > get_size())
68 if (index > get_size())
76 return (get_size() == a.get_size()
77 && oscl_strncmp(get_cstr(), a.get_cstr(), a.get_size()) == 0);
82 return (get_size() == a.get_size()
83 && oscl_strncmp(get_cstr(), a.get_cstr(), a.get_size()) == 0);
90 return (get_size() == len
97 return (get_size() == le
    [all...]
oscl_string_uri.cpp 120 int srcStrLen = srcString.get_size();
149 if (destString.get_size() == destString.get_maxsize())
169 if (destString.get_size() == destString.get_maxsize())
oscl_string_containers.h 128 uint32 get_size() const;
185 uint32 get_size() const;
290 OSCL_IMPORT_REF uint32 get_size() const;
351 OSCL_IMPORT_REF uint32 get_size() const;
427 uint32 get_size() const;
482 uint32 get_size() const;
558 OSCL_IMPORT_REF uint32 get_size() const;
614 OSCL_IMPORT_REF uint32 get_size() const;
704 set_rep(src.get_cstr(), src.get_size());
710 set_rep(src.get_cstr(), src.get_size());
730 uint32 OSCL_HeapString<Alloc>::get_size() const function in class:OSCL_HeapString
738 uint32 OSCL_wHeapString<Alloc>::get_size() const function in class:OSCL_wHeapString
1066 uint32 OSCL_StackString<MaxBufSize>::get_size() const function in class:OSCL_StackString
1072 uint32 OSCL_wStackString<MaxBufSize>::get_size() const function in class:OSCL_wStackString
    [all...]
oscl_string.h 68 virtual uint32 get_size() const = 0;
227 virtual uint32 get_size() const = 0;
  /external/opencore/fileformats/mp4/composer/src/
dataentryurlatom.cpp 62 rendered += _location.get_size() + 1; // 1 for null termination
77 size += _location.get_size() + 1; // 1 for null termination
assetinfoatoms.cpp 153 _keyWordSize = ((_keyWordInfo.get_size() + 1) * 2) + sizeof(_byteOrderMask);;// 1 for the NULL entry
177 _size += 2 * (_title.get_size() + 1);
213 rendered += _title.get_size() + 1; // 1 for the NULL entry
224 _size += 2 * (_description.get_size() + 1);
261 rendered += _description.get_size() + 1; // 1 for the NULL entry
270 _size += 2 * (_cprt.get_size() + 1);
307 rendered += _cprt.get_size() + 1; // 1 for the NULL entry
317 _size += 2 * (_performer.get_size() + 1);
353 rendered += _performer.get_size() + 1; // 1 for the NULL entry
363 _size += 2 * (_author.get_size() + 1)
    [all...]
handleratom.cpp 75 size += _name.get_size() + 1; // +1 for null termination
120 rendered += _name.get_size() + 1;
  /external/opencore/pvmi/content_policy_manager/src/
pvmf_cpmplugin_factory_registry.cpp 66 if (aMimeType.get_size() >= cpmregid.get_size()
67 && oscl_CIstrncmp(cpmregid.get_cstr(), aMimeType.get_cstr(), cpmregid.get_size()) == 0
68 && (aMimeType.get_cstr()[cpmregid.get_size()] == '/'
69 || aMimeType.get_cstr()[cpmregid.get_size()] == '\0'))
  /external/opencore/fileformats/mp4/parser/src/
pvuserdataatom.cpp 50 _count += (_version.get_size() * 2 + 2);
58 _count += (_title.get_size() * 2 + 2);
66 _count += (_author.get_size() * 2 + 2);
74 _count += (_copyright.get_size() * 2 + 2);
82 _count += (_description.get_size() * 2 + 2);
90 _count += (_rating.get_size() * 2 + 2);
98 _count += (_creationDate.get_size() * 2 + 2);
assetinfoatoms.cpp 586 count -= (_defaultNotice.get_size() + 1) * 2;
597 count -= _defaultNotice.get_size() + 1;
600 PV_MP4_FF_ARRAY_NEW(NULL, oscl_wchar, _defaultNotice.get_size() + 1, _pLocationStruct->_location_name);
601 oscl_strncpy(_pLocationStruct->_location_name, _defaultNotice.get_str(), _defaultNotice.get_size());
602 _pLocationStruct->_location_name[_defaultNotice.get_size()] = 0;
604 if (_defaultNotice.get_size() > size)
673 count -= (_astronomical_body.get_size() + 1) * 2;
684 count -= _astronomical_body.get_size() + 1;
686 PV_MP4_FF_ARRAY_NEW(NULL, oscl_wchar, _astronomical_body.get_size() + 1, _pLocationStruct->_astronomical_body);
687 oscl_strncpy(_pLocationStruct->_astronomical_body, _astronomical_body.get_str(), _astronomical_body.get_size());
    [all...]
  /external/opencore/nodes/pvprotocolenginenode/download_protocols/common/src/
pvdl_config_file.cpp 127 if (iConfigFileName.get_size() <= 0)
182 if (iUrl.get_size())
184 tmpRet = iFile->Write(iUrl.get_str(), 1, iUrl.get_size());
192 if (iProxyName.get_size())
194 tmpRet = iFile->Write(iProxyName.get_str(), 1, iProxyName.get_size());
202 if (iPlayerVersion.get_size())
204 tmpRet = iFile->Write(iPlayerVersion.get_str(), 1, iPlayerVersion.get_size());
212 if (iUserAgent.get_size())
214 tmpRet = iFile->Write(iUserAgent.get_str(), 1, iUserAgent.get_size());
222 if (iUserNetwork.get_size())
    [all...]
pvmf_protocol_engine_download_common.cpp 48 StrPtrLen uri((iURI.getURI()).get_cstr(), (iURI.getURI()).get_size());
61 fieldKey.setPtrLen(fieldKeyString.get_str(), fieldKeyString.get_size());
66 fieldKey.setPtrLen(fieldKeyString.get_cstr(), fieldKeyString.get_size());
  /external/e2fsprogs/tests/progs/test_data/
test.icount 48 get_size
113 get_size
135 get_size
  /external/opencore/engines/author/test/src/single_core/
pvaetestinput.cpp 173 if (aFileName.get_size() != 0)
181 if (aFileName.get_size() == 0)
194 if (aFileName.get_size() == 0)
207 if (aFileName.get_size() == 0)
220 if (aFileName.get_size() == 0)
232 if (aFileName.get_size() == 0)
244 if (aFileName.get_size() == 0)
255 if (aFileName.get_size() == 0)
267 if (aFileName.get_size() == 0)
275 if (iAVTConfig.iTextLogFile.get_size() == 0
    [all...]
  /external/e2fsprogs/tests/progs/
test_icount_cmds.ct 29 get_size;
  /external/opencore/engines/2way/test/src/
init_play_reset_test.cpp 25 char *filename = new char[iFilename.get_size() + 1];
26 if ((filename == NULL) || (oscl_UnicodeToUTF8(iFilename.get_cstr(), iFilename.get_size(), filename, iFilename.get_size() + 1) == 0))
init_play_test.cpp 25 char *filename = new char[iFilename.get_size() + 1];
26 if ((filename == NULL) || (oscl_UnicodeToUTF8(iFilename.get_cstr(), iFilename.get_size(), filename, iFilename.get_size() + 1) == 0))
  /external/opencore/protocols/sdp/common/include/
asf_media_info.h 134 if (lang.get_size() > 0)
136 size += oscl_strlen("a=lang:") + lang.get_size() + SDP_CR_LF;
  /external/opencore/oscl/oscl/osclregserv/src/
oscl_registry_serv_impl.cpp 78 if (iId->get_size() >= id.get_size()
79 && oscl_CIstrncmp(id.get_cstr(), iId->get_cstr(), id.get_size()) == 0
80 && (iId->get_cstr()[id.get_size()] == '/'
81 || iId->get_cstr()[id.get_size()] == '\0'))
  /external/iproute2/tc/
q_red.c 54 if (get_size(&opt.limit, *argv)) {
61 if (get_size(&opt.qth_min, *argv)) {
68 if (get_size(&opt.qth_max, *argv)) {
82 if (get_size(&avpkt, *argv)) {
  /external/opencore/nodes/pvprotocolenginenode/protocol_common/src/
pvmf_protocol_engine_node_common.cpp 652 if (aUserAgent.get_size() == 0) return true;
655 char *buf = (char*)alloc.allocate(aUserAgent.get_size() + 1);
658 if ((size = oscl_UnicodeToUTF8(aUserAgent.get_cstr(), aUserAgent.get_size(), buf, aUserAgent.get_size() + 1)) == 0)
672 if (aUserAgent.get_size() == 0) return true;
674 iInputUserAgent = OSCL_HeapString<OsclMemAllocator> (aUserAgent.get_str(), aUserAgent.get_size());
681 if (iActualUserAgent.get_size() > 0)
688 if (iOverwritable && iInputUserAgent.get_size() > 0)
697 uint32 size = defaultUserAgent.get_size() + iInputUserAgent.get_size() + 1; // 1 => spac
    [all...]
  /external/opencore/baselibs/gen_data_structures/src/
pv_string.h 65 int get_size() const;
68 return get_size();
180 inline int String::get_size() const function in class:String
  /external/opencore/engines/author/test/src/
test_pv_mediainput_author_engine.cpp 61 if ((iFirstTest != iLastTest) || (aMediaInputParam.iIPFileInfo.get_size() == 0))
65 if ((iFirstTest != iLastTest) || (aMediaInputParam.iOPFileInfo.get_size() == 0))
189 if ((iFirstTest != iLastTest) || (aMediaInputParam.iIPFileInfo.get_size() == 0))
193 if ((iFirstTest != iLastTest) || (aMediaInputParam.iOPFileInfo.get_size() == 0))
250 if ((iFirstTest != iLastTest) || (aMediaInputParam.iIPFileInfo.get_size() == 0))
254 if ((iFirstTest != iLastTest) || (aMediaInputParam.iOPFileInfo.get_size() == 0))
275 if ((iFirstTest != iLastTest) || (aMediaInputParam.iIPFileInfo.get_size() == 0))
279 if ((iFirstTest != iLastTest) || (aMediaInputParam.iOPFileInfo.get_size() == 0))
299 if ((iFirstTest != iLastTest) || (aMediaInputParam.iIPFileInfo.get_size() == 0))
303 if ((iFirstTest != iLastTest) || (aMediaInputParam.iOPFileInfo.get_size() == 0)
    [all...]
  /external/opencore/pvmi/pvmf/include/
pvmf_format_type.h 202 iMimeStr.setPtrLen(iStr.get_cstr(), iStr.get_size());
209 iMimeStr.setPtrLen(iStr.get_cstr(), iStr.get_size());
  /external/opencore/protocols/rtsp_client_engine/src/
pvrtsp_client_engine_node.cpp 549 if ((0 == aRtspProxyName.get_size())
641 uint32 tmpSize = iSessionInfo.iUserAgent.get_size();
651 if (0 == oscl_UTF8ToUnicode(iSessionInfo.iUserAgent.get_cstr(), iSessionInfo.iUserAgent.get_size(), (oscl_wchar*)tmpBuf, (tmpSize*sizeof(oscl_wchar))))
667 uint32 tmpSize = aUserAgent.get_size();
668 if (tmpSize < aUserNetwork.get_size())
670 tmpSize = aUserNetwork.get_size();
672 if (tmpSize < aDeviceInfo.get_size())
674 tmpSize = aDeviceInfo.get_size();
686 if (aUserAgent.get_size() > 0)
688 if (0 == oscl_UnicodeToUTF8(aUserAgent.get_cstr(), aUserAgent.get_size(), (char*)tmpBuf, tmpSize)
    [all...]

Completed in 614 milliseconds

1 2 3 4