Home | History | Annotate | Download | only in payload_consumer

Lines Matching full:open

2 // Copyright (C) 2012 The Android Open Source Project
34 // * Providing two flavors of Open()
37 // as long as open/close preconditions are respected.
43 // * Provides a Reset() method, which will force to abandon a currently open
63 virtual bool Open(const char* path, int flags, mode_t mode) = 0;
64 virtual bool Open(const char* path, int flags) = 0;
67 // open prior to this call. Returns the number of bytes read, or -1 on error.
71 // Writes to a file descriptor. The descriptor must be open prior to this
96 // Closes a file descriptor. The descriptor must be open prior to this call.
101 // Resets the file descriptor, abandoning a currently open file and returning
108 // Indicates whether the descriptor is currently open.
121 bool Open(const char* path, int flags, mode_t mode) override;
122 bool Open(const char* path, int flags) override;