Searched refs:PROGRAM_NAME_SIZE (Results 1 – 2 of 2) sorted by relevance
39 constexpr size_t PROGRAM_NAME_SIZE { 256 }; variable203 static char programName[PROGRAM_NAME_SIZE] = { 0 }; in GetProgramName()240 size_t copySize = std::min(tempName.size(), PROGRAM_NAME_SIZE - 1); in GetProgramName()245 errno_t result = memcpy_s(programName, PROGRAM_NAME_SIZE, tempName.c_str(), copySize); in GetProgramName()
63 constexpr size_t PROGRAM_NAME_SIZE { 256 }; variable181 static char programName[PROGRAM_NAME_SIZE] = {}; in GetProgramName()214 const size_t copySize = std::min(tempName.size(), PROGRAM_NAME_SIZE - 1); in GetProgramName()219 errno_t ret = memcpy_s(programName, PROGRAM_NAME_SIZE, tempName.c_str(), copySize); in GetProgramName()