Lines Matching defs:arg
250 const char *cmd, *arg;
253 /* Check if this command has no ":arg" */
254 if ((arg = strstr(cmd, ":")) == NULL) {
258 if ((int)(arg - cmd) > 254) {
262 memcpy(buf, cmd, (int)(arg - cmd));
263 buf[arg - cmd] = '\0';
264 arg++; /* Move past the ":" */
266 if (!ENGINE_ctrl_cmd_string(e, buf, arg, 0))
284 static void util_store_cap(const OSSL_STORE_LOADER *loader, void *arg)
286 struct util_store_cap_data *ctx = arg;