Lines Matching refs:soBuildId
74 static char soBuildId[NAME_MAX] = { '\0' };
75 if (!GetRuntimeBuildId(soBuildId, NAME_MAX) || IsCharEmpty(soBuildId)) {
88 GetRuntimeInfoByPath(lines, realOutPath.c_str(), soBuildId);
96 if (!BuildRuntimeInfoPart(lines[lineCount], soBuildId, timestamp, type)) {
106 static char soBuildId[NAME_MAX] = { '\0' };
107 if (!GetRuntimeBuildId(soBuildId, NAME_MAX) || IsCharEmpty(soBuildId)) {
121 if (!BuildRuntimeInfoPart(lines[lineCount], soBuildId, timestamp, type)) {
265 bool BuildRuntimeInfoPart(char *runtimeInfoPart, const char *soBuildId, const char *timestamp,
268 if (strcat_s(runtimeInfoPart, NAME_MAX, soBuildId) != 0) {
321 static char soBuildId[NAME_MAX] = { '\0' };
322 if (!GetRuntimeBuildId(soBuildId, NAME_MAX)) {
325 if (IsCharEmpty(soBuildId)) {
328 GetRuntimeInfoByPath(lines, realOutPath, soBuildId);
341 char soBuildId[NAME_MAX] = { '\0' };
342 if (!GetRuntimeBuildId(soBuildId, NAME_MAX)) {
345 if (IsCharEmpty(soBuildId)) {
348 GetRuntimeInfoByPath(lines, realOutPath.c_str(), soBuildId);
366 void GetRuntimeInfoByPath(char lines[][BUFFER_SIZE], const char *realOutPath, const char *soBuildId) const
380 if (strcmp(GetInfoFromBuffer(token, RUNTIME_INDEX_BUILDID), soBuildId) == 0 &&