Home | History | Annotate | Download | only in src

Lines Matching refs:bYte

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
345 if(reader.readByte(&bYte) != SYNCML_DM_SUCCESS
346 || bYte != (SyncML_DM_WBXMLArchive::NODE_START_TAG
361 /* If the read byte is an END_TAG... */
362 if(bYte == END_TAG)
376 /* Get the next byte after the END_TAG */
377 ret_stat=reader.readByte(&bYte);
385 if(bYte == (NODE_START_TAG | TAG_CONTENT_MASK))
389 * the byte that signaled the end of the node.
393 if(reader.readNode(&props, &bYte) != SYNCML_DM_SUCCESS)
409 /* Invalid byte read */