Lines Matching defs:args
387 /* args and service names live in the same pool */
422 /* Service args follow from StartService() invocation */
457 /* args and service names live in the same pool */
492 /* Service args follow from StartService() invocation */
607 apr_array_header_t *args,
643 args->nalloc = args->nelts + svc_args->nelts;
644 cmb_data = malloc(args->nalloc * sizeof(const char *));
646 /* First three args (argv[0], -f, path) remain first */
647 memcpy(cmb_data, args->elts, args->elt_size * fixed_args);
649 /* Service args follow from service registry array */
653 /* Remaining new args follow */
655 (const char **)args->elts + fixed_args,
656 args->elt_size * (args->nelts - fixed_args));
658 args->elts = (char *)cmb_data;
659 args->nelts = args->nalloc;