Searched refs:nextPtr (Results 1 - 8 of 8) sorted by relevance
/foundation/CastEngine/castengine_cast_plus_stream/src/rtsp/src/ |
H A D | rtsp_parse.cpp | 101 char *nextPtr = nullptr; in ParseIntSafe() local 102 long result = strtol(str.c_str(), &nextPtr, DECIMALISM); in ParseIntSafe() 106 } else if (*nextPtr != '\0') { in ParseIntSafe() 129 char *nextPtr = nullptr; in ParseDoubleSafe() local 134 } else if (*nextPtr != '\0') { in ParseDoubleSafe()
|
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/rtsp/src/ |
H A D | rtsp_parse.cpp | 101 char *nextPtr = nullptr; in ParseIntSafe() local 102 long result = strtol(str.c_str(), &nextPtr, DECIMALISM); in ParseIntSafe() 106 } else if (*nextPtr != '\0') { in ParseIntSafe() 129 char *nextPtr = nullptr; in ParseDoubleSafe() local 134 } else if (*nextPtr != '\0') { in ParseDoubleSafe()
|
/foundation/distributedhardware/device_manager/common/src/ |
H A D | dm_anonymous.cpp | 209 char *nextPtr = nullptr; in StringToInt() local 210 long result = strtol(str.c_str(), &nextPtr, base); in StringToInt() 211 if (errno == ERANGE || *nextPtr != '\0') { in StringToInt() 224 char *nextPtr = nullptr; in StringToInt64() local 225 int64_t result = strtoll(str.c_str(), &nextPtr, base); in StringToInt64() 226 if (errno == ERANGE || nextPtr == nullptr || nextPtr == str.c_str() || *nextPtr != '\0') { in StringToInt64()
|
/foundation/CastEngine/castengine_cast_plus_stream/src/utils/src/ |
H A D | utils.cpp | 118 char *nextPtr = nullptr; in StringToInt() local 119 long result = strtol(str.c_str(), &nextPtr, DECIMALISM); in StringToInt() 120 if (errno == ERANGE || *nextPtr != '\0') { in StringToInt()
|
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/utils/src/ |
H A D | utils.cpp | 118 char *nextPtr = nullptr;
in StringToInt() local 119 long result = strtol(str.c_str(), &nextPtr, DECIMALISM);
in StringToInt() 120 if (errno == ERANGE || *nextPtr != '\0') {
in StringToInt()
|
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/stream/src/local/src/ |
H A D | cast_local_file_channel_common.cpp | 190 char *nextPtr = nullptr; in ConvertFileId() local 191 fd = static_cast<int>(strtol(fileId.c_str(), &nextPtr, DECIMALISM)); in ConvertFileId() 195 } else if (*nextPtr != '\0') { in ConvertFileId()
|
/foundation/CastEngine/castengine_cast_plus_stream/src/stream/src/local/src/ |
H A D | cast_local_file_channel_common.cpp | 190 char *nextPtr = nullptr; in ConvertFileId() local 191 fd = static_cast<int>(strtol(fileId.c_str(), &nextPtr, DECIMALISM)); in ConvertFileId() 195 } else if (*nextPtr != '\0') { in ConvertFileId()
|
/foundation/CastEngine/castengine_cast_framework/common/src/ |
H A D | cast_engine_common_helper.cpp | 126 char *nextPtr = nullptr; in GetLocalFd() local 127 int fd = static_cast<int>(std::strtol(url.c_str(), &nextPtr, DECIMALISM)); in GetLocalFd() 128 if (errno == ERANGE || *nextPtr != '\0') { in GetLocalFd()
|
Completed in 5 milliseconds