Home
last modified time | relevance | path

Searched refs:execute_command (Results 1 – 14 of 14) sorted by relevance

/external/syzkaller/executor/
Dcommon_linux.h92 static void execute_command(bool panic, const char* format, ...) in execute_command() function
197 execute_command(0, "sysctl -w net.ipv6.conf.%s.accept_dad=0", TUN_IFACE); in initialize_tun()
201 execute_command(0, "sysctl -w net.ipv6.conf.%s.router_solicitations=0", TUN_IFACE); in initialize_tun()
204 execute_command(1, "ip link set dev %s address %s", TUN_IFACE, LOCAL_MAC); in initialize_tun()
205 execute_command(1, "ip addr add %s/24 dev %s", LOCAL_IPV4, TUN_IFACE); in initialize_tun()
206 execute_command(1, "ip neigh add %s lladdr %s dev %s nud permanent", in initialize_tun()
209 execute_command(0, "ip -6 addr add %s/120 dev %s", LOCAL_IPV6, TUN_IFACE); in initialize_tun()
210 execute_command(0, "ip -6 neigh add %s lladdr %s dev %s nud permanent", in initialize_tun()
212 execute_command(1, "ip link set dev %s up", TUN_IFACE); in initialize_tun()
267 execute_command(0, "ip link add dev %s0 type %s", devtypes[i], devtypes[i]); in initialize_netdevices()
[all …]
/external/autotest/site_utils/
Dmysql_bootstrap.py102 return infra.execute_command(dest_server, full_cmd)
152 infra.execute_command(dest_host, 'echo "hello"')
191 return infra.execute_command('localhost', cmd).rstrip('\n')
Dserver_manager_unittest.py221 infra.execute_command(mox.IgnoreArg(), mox.IgnoreArg())
249 infra.execute_command(mox.IgnoreArg(), mox.IgnoreArg())
332 infra.execute_command(mox.IgnoreArg(), mox.IgnoreArg())
362 infra.execute_command(mox.IgnoreArg(), mox.IgnoreArg())
Dserver_manager_actions.py96 infra.execute_command(server.hostname, command)
Ddeploy_server.py103 output = infra.execute_command(server, cmd)
Dserver_manager_utils.py171 infra.execute_command(hostname, 'true')
/external/libcxx/utils/
Dmerge_archives.py46 def execute_command(cmd, cwd=None): function
68 out, err, exitCode = execute_command(cmd, cwd=cwd)
/external/syzkaller/pkg/csource/
Dgenerated.go736 static void execute_command(bool panic, const char* format, ...)
827 execute_command(0, "sysctl -w net.ipv6.conf.%s.accept_dad=0", TUN_IFACE);
828 execute_command(0, "sysctl -w net.ipv6.conf.%s.router_solicitations=0", TUN_IFACE);
830 execute_command(1, "ip link set dev %s address %s", TUN_IFACE, LOCAL_MAC);
831 execute_command(1, "ip addr add %s/24 dev %s", LOCAL_IPV4, TUN_IFACE);
832 execute_command(1, "ip neigh add %s lladdr %s dev %s nud permanent",
834 execute_command(0, "ip -6 addr add %s/120 dev %s", LOCAL_IPV6, TUN_IFACE);
835 execute_command(0, "ip -6 neigh add %s lladdr %s dev %s nud permanent",
837 execute_command(1, "ip link set dev %s up", TUN_IFACE);
886 execute_command(0, "ip link add dev %s0 type %s", devtypes[i], devtypes[i]);
[all …]
/external/autotest/site_utils/lib/
Dinfra.py123 def execute_command(host, cmd, **kwargs): function
/external/autotest/scheduler/
Dpidfile_monitor.py70 self.pidfile_id = self._drone_manager.execute_command(
Ddrone_manager_unittest.py261 pidfile_id = self.manager.execute_command(
284 self.manager.execute_command(command=['test'],
Ddrone_utility.py201 def execute_command(self, command, working_directory, log_file, member in DroneUtility
Ddrone_manager.py726 def execute_command(self, command, working_directory, pidfile_name, member in DroneManager
Dmonitor_db_functional_test.py236 def execute_command(self, command, working_directory, pidfile_name, member in MockDroneManager