Home | History | Annotate | Download | only in adaptation

Lines Matching refs:append

44     mBuffer.append ((uint8_string::size_type) 1, (uint8_string::value_type) 0);
61 mBuffer.append ((uint8_string::size_type) 1, (uint8_string::value_type) 0);
83 ** Function: append
85 ** Description: Append new config data to internal buffer.
92 bool StartupConfig::append (const UINT8* newContent)
94 static const char fn [] = "StartupConfig::append";
100 ALOGD ("%s: try append %u bytes", fn, (uint8_string::size_type) (newContent[0]));
101 //append new payload into private buffer
102 mBuffer.append (newContent+1, (uint8_string::size_type) (newContent[0]));
112 ** Function: append
114 ** Description: Append new config data to internal buffer.
122 bool StartupConfig::append (const UINT8* newContent, UINT8 newContentLen)
124 static const char fn [] = "StartupConfig::append";
130 return append (newContent);
174 found0xC2 = append (tlv);