/external/libchrome/base/ |
file_descriptor_posix.h | 18 // over IPC. Even if |auto_close| is true, base::FileDescriptor does NOT close() 20 // must invoke close() on |fd| if |auto_close| is true. 23 // a message that contains a base::FileDescriptor if auto_close == true. On the 29 FileDescriptor() : fd(-1), auto_close(false) {} 31 FileDescriptor(int ifd, bool iauto_close) : fd(ifd), auto_close(iauto_close) { 34 FileDescriptor(File file) : fd(file.TakePlatformFile()), auto_close(true) {} 35 explicit FileDescriptor(ScopedFD fd) : fd(fd.release()), auto_close(true) {} 38 return (fd == other.fd && auto_close == other.auto_close); 54 bool auto_close; member in struct:base::FileDescriptor [all...] |
sync_socket_posix.cc | 112 descriptor->auto_close = false;
|
/external/autotest/client/virt/ |
aexpect.py | 371 def __init__(self, command=None, id=None, auto_close=False, echo=False, 380 @param auto_close: If True, close() the instance automatically when its 405 self.auto_close = auto_close 468 return (None, self.id, self.auto_close, self.echo, self.linesep) 472 if self.auto_close: 665 def __init__(self, command=None, id=None, auto_close=False, echo=False, 675 @param auto_close: If True, close() the instance automatically when its 699 Spawn.__init__(self, command, id, auto_close, echo, linesep) 859 def __init__(self, command=None, id=None, auto_close=True, echo=False [all...] |
kvm_vm.py | [all...] |