Searched refs:srcStr (Results 1 – 1 of 1) sorted by relevance
119 static void TCGetKeyNum ( char* srcStr, u32* num );120 static void TCGetKeyString ( char* srcStr, char* dstStr );121 static void TCStripBlanks ( char* srcStr, u32 leading, u32 trailing );652 static void TCGetKeyNum ( char* srcStr, u32* num ) in TCGetKeyNum() argument665 if( (srcStr == NULL) || (*srcStr == '\0') ) // no string; return TC_UNUSED in TCGetKeyNum()670 strcpy(subStr, srcStr); // if no string left after 'TCStripBlanks, in TCGetKeyNum()703 static void TCGetKeyString( char* srcStr, char* dstStr ) in TCGetKeyString() argument711 if( (srcStr == NULL) || (dstStr == NULL) ) in TCGetKeyString()717 if( *srcStr == '\0') in TCGetKeyString()724 if( (name = strtok(srcStr, ";")) == 0 ) in TCGetKeyString()[all …]