Home
last modified time | relevance | path

Searched refs:nextPtr (Results 1 - 8 of 8) sorted by relevance

/foundation/CastEngine/castengine_cast_plus_stream/src/rtsp/src/
H A Drtsp_parse.cpp101 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 Drtsp_parse.cpp101 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 Ddm_anonymous.cpp209 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 Dutils.cpp118 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 Dutils.cpp118 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 Dcast_local_file_channel_common.cpp190 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 Dcast_local_file_channel_common.cpp190 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 Dcast_engine_common_helper.cpp126 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