Lines Matching refs:src
1114 * @param src - string, that should be investigated
1118 decodeUsbIDs( char *src, char **dest )
1124 if( isspace(src[len])) {
1125 strncpy( tmp, &src[len+1], (strlen(src)-(len+1)));
1126 tmp[(strlen(src)-(len+1))] = '\0';
1167 * @param src - pointer to the source string to check
1168 * @param opt - string that keeps the option name to check src for
1176 decodeVal( char *src, char *opt, int what, void *result, void *def )
1182 name = (const char*)&src[strlen("option")];
1237 * @param src - string that keeps the option name to check src for
1244 decodeDevName( char *src, char *dest )
1249 if( 0 == strncmp( "device", src, 6 )) {
1251 name = (const char*)&src[strlen("device")];