Lines Matching full:arguments
261 const char* arguments[] = {source_path_c, target_path_c, NULL};
267 arguments,
275 NSArray* arguments = [NSArray arrayWithObjects:source_path,
282 arguments:arguments];
284 LOG(ERROR) << "+[NSTask launchedTaskWithLaunchPath:arguments:]: "
310 // Launches the application at app_path. The arguments passed to app_path
311 // will be the same as the arguments used to invoke this process, except any
312 // arguments beginning with -psn_ will be stripped.
325 NSMutableArray* arguments =
334 // Strip any -psn_ arguments, as they apply to a specific process.
335 [arguments addObject:[NSString stringWithUTF8String:argument.c_str()]];
342 parameters.argv = base::mac::NSToCFCast(arguments);