Home | History | Annotate | Download | only in utils

Lines Matching full:parameter

67 /** STRING PARAMETER PARSING
76 /* Gets a parameter value out of the parameter string.
77 * Parameter format for this routine is as such:
80 * - Every parameter must have a name, and a value.
87 * name - Parameter name.
88 * value - Upon success contains value for the given parameter.
91 * 0 on success, -1 if requested parameter is not found, or (a positive) number
92 * of bytes, required to make a copy of the parameter's value if 'value' string
97 /* Gets a parameter value out of the parameter string.
102 * name - Parameter name.
104 * the given parameter. The caller is responsible for freeing the buffer
105 * returned in this parameter on success.
107 * 0 on success, -1 if requested parameter is not found, or -2 on
112 /* Gets an integer parameter value out of the parameter string.
116 * name - Parameter name. Parameter value must be a decimal number.
117 * value - Upon success contains integer value for the given parameter.
119 * 0 on success, or -1 if requested parameter is not found, or -2 if parameter's