Lines Matching refs:o_pProfilePath
89 static void BuildFullProfilePathWithName(utf8cstr o_pProfilePath, in BuildFullProfilePathWithName() argument
94 FATAL_ASSERT( o_pProfilePath ); in BuildFullProfilePathWithName()
105 strncpy(o_pProfilePath, i_pWorkingDirectory, in BuildFullProfilePathWithName()
108 if ( o_pProfilePath[ strlen(o_pProfilePath) -1 ] != PATH_SEPARATOR ) in BuildFullProfilePathWithName()
110 len = strlen(o_pProfilePath); in BuildFullProfilePathWithName()
111 o_pProfilePath[ len ] = PATH_SEPARATOR ; in BuildFullProfilePathWithName()
112 o_pProfilePath[ len + 1 ] = '\0'; in BuildFullProfilePathWithName()
115 strncat( o_pProfilePath, i_pProfileName, KMS_MAX_FILE_NAME ); in BuildFullProfilePathWithName()
116 len = strlen(o_pProfilePath); in BuildFullProfilePathWithName()
117 o_pProfilePath[ len ] = PATH_SEPARATOR ; in BuildFullProfilePathWithName()
118 o_pProfilePath[ len +1 ] = '\0'; in BuildFullProfilePathWithName()