Searched refs:srcStr (Results 1 – 1 of 1) sorted by relevance
114 static void TCGetKeyNum ( char* srcStr, u32* num );115 static void TCGetKeyString ( char* srcStr, char* dstStr );116 static void TCStripBlanks ( char* srcStr, u32 leading, u32 trailing );647 static void TCGetKeyNum ( char* srcStr, u32* num ) in TCGetKeyNum() argument660 if( (srcStr == NULL) || (*srcStr == '\0') ) // no string; return TC_UNUSED in TCGetKeyNum()665 strcpy(subStr, srcStr); // if no string left after 'TCStripBlanks, in TCGetKeyNum()698 static void TCGetKeyString( char* srcStr, char* dstStr ) in TCGetKeyString() argument706 if( (srcStr == NULL) || (dstStr == NULL) ) in TCGetKeyString()712 if( *srcStr == '\0') in TCGetKeyString()719 if( (name = strtok(srcStr, ";")) == 0 ) in TCGetKeyString()[all …]