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

  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/src/
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...]
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_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...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/hdr/
SyncML_DM_Reader.H 51 /* Read a byte into the argument of this function
54 virtual SYNCML_DM_RET_STATUS_T readByte(UINT8* bYte) = 0;
57 * return the next byte read
SyncML_DM_Writer.H 40 /* write a byte into the file
43 virtual SYNCML_DM_RET_STATUS_T writeByte(UINT8 bYte) = 0;
SyncML_DM_WBXMLWriter.H 34 /* Write a byte of data into the file handle */
35 virtual SYNCML_DM_RET_STATUS_T writeByte(UINT8 bYte);
SyncML_DM_WBXMLReader.H 37 /* Reads a byte of data from the file handle */
38 virtual SYNCML_DM_RET_STATUS_T readByte(UINT8 *bYte);
  /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...]
  /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;

Completed in 630 milliseconds