HomeSort by relevance Sort by last modified time
    Searched defs:bYte (Results 1 - 5 of 5) sorted by null

  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/src/
SyncML_Commit_Log.cc 231 SYNCML_DM_LOG_CORRUPT - there was an invalid byte read
254 SYNCML_DM_LOG_CORRUPT - there was an invalid byte read
321 SYNCML_DM_LOG_CORRUPT - there was an invalid byte read
333 UINT8 bYte;
356 // Read the first byte of data looking for an ENTRY_START_TAG
357 if (reader->readByte(&bYte) != SYNCML_DM_SUCCESS)
364 if (bYte == SyncML_DM_WBXMLArchive::END_TAG)
371 if (bYte == (SyncML_DM_WBXMLArchive::ENTRY_START_TAG
378 &bYte) != SYNCML_DM_SUCCESS)
392 // Read the first byte of data looking for an ENTRY_START_TAG
    [all...]
SyncML_DM_WBXMLArchive.cc 28 * version is always 1 byte.
29 * publicid - We assume the public ID is <=127, which only takes 1 byte
31 * charset - 0x6A is the code for UTF-8; 1 byte for mb_uint32 encoding
32 * The 4th byte is the mb_uint32 length of the optional string table that follows;
319 UINT8 bYte;
329 if(reader.readByte(&bYte) != SYNCML_DM_SUCCESS)
334 if(bYte != (TREE_START_TAG | TAG_CONTENT_MASK))
340 /* Read the first byte of data, expected to be END_TAG or NODE_START_TAG.
341 * The byte read will be parsed in the upcoming loop.
342 * If the byte is not the NODE_START_TAG with content, there is no
    [all...]
SyncML_DM_WBXMLReader.cc 29 Description: Reads a byte of data from the file handle
33 SyncML_DM_WBXMLReader::readByte(UINT8* byte) {
34 return this->fileHandle->read(byte, 1);
47 UINT8 bYte;
50 if (this->readByte(&bYte) != SYNCML_DM_SUCCESS
51 || bYte != SyncML_DM_WBXMLArchive::WBXML_VERSION) {
56 if (this->readByte(&bYte) != SYNCML_DM_SUCCESS
57 || bYte != SyncML_DM_WBXMLArchive::PUBLIC_ID) {
62 if (this->readByte(&bYte) != SYNCML_DM_SUCCESS
63 || bYte != SyncML_DM_WBXMLArchive::CHARSET)
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_tnm/src/
dm_tree_plugin_util.cc 88 UINT8 bYte = 0;
89 ret_code = reader->readByte( &bYte );
93 if( bYte != SyncML_DM_WBXMLArchive::END_TAG ) break;
  /packages/apps/OMA-DM/engine/dmlib/plugin/src/
SyncML_PlugIn_WBXMLLog.cc 644 SYNCML_DM_LOG_CORRUPT - there was an invalid byte read
748 SYNCML_DM_LOG_CORRUPT - there was an invalid byte read
763 UINT8 bYte;
780 if((ret_code=gotoLastRecord(reader,&bYte, &currentRecordPos)) != SYNCML_DM_SUCCESS)
789 if(bYte == SyncML_DM_WBXMLArchive::END_TAG)
795 if(bYte == (SyncML_DM_WBXMLArchive::ENTRY_START_TAG | SyncML_DM_WBXMLArchive::TAG_CONTENT_MASK))
797 if(reader->readOneLogRecord(&cmdType, &cmdURI, &attribute,&props,&bYte) != SYNCML_DM_SUCCESS)
839 // Read the first byte of data looking for an ENTRY_START_TAG
840 if(reader->readByte(&bYte) != SYNCML_DM_SUCCESS)
    [all...]

Completed in 79 milliseconds