Lines Matching refs:param
71 static void ParameterError(w, param)
73 String param;
78 params[1] = param;
1593 * WHEN: the passed param is a legal hex string
1597 * WHEN: the passed param is not a legal hex string:
1599 * len_return holds the char count of param.
1604 IfHexConvertHexElseReturnParam(param, len_return)
1605 char* param;
1608 char *p; /* steps through param char by char */
1617 if ( ( param[0] != '0' ) || ( param[1] != 'x' ) || ( param[2] == '\0' ) ) {
1618 *len_return = strlen( param );
1619 return( param );
1628 for ( p = param+2; ( c = *p ); p++ ) {
1647 *len_return = strlen( param );
1648 return( param );
1662 *len_return = strlen( param );
1663 return( param ); /* ...return the verbatim string. */