OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:missing_ok
(Results
1 - 2
of
2
) sorted by null
/external/autotest/client/cros/
network_chroot.py
176
def get_pid_file(self, pid_file,
missing_ok
=False):
182
@param
missing_ok
bool indicating whether exceptions due to failure
193
if not
missing_ok
or e.errno != errno.ENOENT:
199
def kill_pid_file(self, pid_file,
missing_ok
=False):
204
@param
missing_ok
bool indicating whether a missing pid file is okay,
208
pid = self.get_pid_file(pid_file,
missing_ok
=
missing_ok
)
209
if
missing_ok
and pid == 0:
vpn_server.py
188
chroot.kill_pid_file(self.XL2TPD_PID_FILE,
missing_ok
=True)
189
chroot.kill_pid_file(self.PPPD_PID_FILE,
missing_ok
=True)
304
chroot.kill_pid_file(self.OPENVPN_PID_FILE,
missing_ok
=True)
Completed in 131 milliseconds