Home | History | Annotate | Download | only in sandbox

Lines Matching refs:arg

129         char *arg = argv[i];
130 if (arg[0] != '-') {
133 if (!strcmp(arg, "-b")) {
135 } else if (!strcmp(arg, "-l")) {
137 } else if (!strcmp(arg, "-8")) {
139 } else if (!strncmp(arg, "-f", 2)) {
140 framesPerBuffer = atoi(&arg[2]);
141 } else if (!strncmp(arg, "-n", 2)) {
142 numBuffers = atoi(&arg[2]);
143 } else if (!strncmp(arg, "-p", 2)) {
144 initialRate = atoi(&arg[2]);
145 } else if (!strncmp(arg, "-P", 2)) {
146 finalRate = atoi(&arg[2]);
147 } else if (!strncmp(arg, "-q", 2)) {
148 deltaRate = atoi(&arg[2]);
153 } else if (!strncmp(arg, "-Q", 2)) {
154 deltaRateMs = atoi(&arg[2]);
155 } else if (!strcmp(arg, "-r")) {
158 fprintf(stderr, "option %s ignored\n", arg);