Searched refs:argv_cstr (Results 1 – 1 of 1) sorted by relevance
304 scoped_ptr<char* []> argv_cstr(new char* [argv.size() + 1]); in LaunchProcess() local306 argv_cstr[i] = const_cast<char*>(argv[i].c_str()); in LaunchProcess()308 argv_cstr[argv.size()] = NULL; in LaunchProcess()490 execvp(argv_cstr[0], argv_cstr.get()); in LaunchProcess()493 RAW_LOG(ERROR, argv_cstr[0]); in LaunchProcess()555 scoped_ptr<char*[]> argv_cstr(new char*[argv.size() + 1]); in GetAppOutputInternal() local607 argv_cstr[i] = const_cast<char*>(argv[i].c_str()); in GetAppOutputInternal()608 argv_cstr[argv.size()] = NULL; in GetAppOutputInternal()610 execvp(argv_cstr[0], argv_cstr.get()); in GetAppOutputInternal()612 execve(argv_cstr[0], argv_cstr.get(), envp); in GetAppOutputInternal()