Searched refs:pFieldValue (Results 1 – 2 of 2) sorted by relevance
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/ |
H A D | APETag.cpp | 14 CAPETagField::CAPETagField(const str_utf16 * pFieldName, const void * pFieldValue, int nFieldBytes,… in CAPETagField() argument 25 memcpy(m_spFieldValue, pFieldValue, m_nFieldValueBytes); in CAPETagField() 542 int CAPETag::SetFieldString(const str_utf16 * pFieldName, const str_utf16 * pFieldValue) in SetFieldString() argument 545 if ((pFieldValue == NULL) || (wcslen(pFieldValue) <= 0)) in SetFieldString() 549 CSmartPtr<str_utf8> spFieldValueUTF8(GetUTF8FromUTF16((str_utf16 *) pFieldValue), TRUE); in SetFieldString() 553 int CAPETag::SetFieldString(const str_utf16 * pFieldName, const char * pFieldValue, BOOL bAlreadyUT… in SetFieldString() argument 556 if ((pFieldValue == NULL) || (strlen(pFieldValue) <= 0)) in SetFieldString() 562 CSmartPtr<char> spUTF8((char *) GetUTF8FromANSI(pFieldValue), TRUE); in SetFieldString() 568 int nFieldBytes = strlen(pFieldValue); in SetFieldString() 569 … return SetFieldBinary(pFieldName, pFieldValue, nFieldBytes, TAG_FIELD_FLAG_DATA_TYPE_TEXT_UTF8); in SetFieldString() [all …]
|
H A D | APETag.h | 173 …CAPETagField(const str_utf16 * pFieldName, const void * pFieldValue, int nFieldBytes = -1, int nFl… 237 virtual int SetFieldString(const str_utf16 * pFieldName, const str_utf16 * pFieldValue); 238 …virtual int SetFieldString(const str_utf16 * pFieldName, const char * pFieldValue, BOOL bAlreadyUT… 239 …virtual int SetFieldBinary(const str_utf16 * pFieldName, const void * pFieldValue, int nFieldBytes… 284 int SetFieldID3String(const str_utf16 * pFieldName, const char * pFieldValue, int nBytes);
|