Home
last modified time | relevance | path

Searched refs:startPostion (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/common/
H A Draw_address.cpp28 std::size_t startPostion = 0; in ConvertToUint8() local
29 std::size_t colonPosition = address_.find(':', startPostion); in ConvertToUint8()
31 token.push_back(address_.substr(startPostion, colonPosition - startPostion)); in ConvertToUint8()
32 startPostion = colonPosition + BT_COLON_BYTE_SIZE; in ConvertToUint8()
33 colonPosition = address_.find(':', startPostion); in ConvertToUint8()
35 if (startPostion != BT_ADDRESS_STR_LEN) { in ConvertToUint8()
36 token.push_back(address_.substr(startPostion)); in ConvertToUint8()