Searched refs:__file (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/ |
H A D | cgi.py | 714 self.file = self.__file = BytesIO() # store data as bytes for files 716 self.file = self.__file = StringIO() # as strings for other fields 724 if self.__file is not None: 725 if self.__file.tell() + len(line) > 1000: 727 data = self.__file.getvalue() 729 self.__file = None
|
/third_party/libwebsockets/lib/core/ |
H A D | libwebsockets.c | 201 int lws_open(const char *__file, int __oflag, ...) in lws_open() argument 214 n = open(__file, __oflag, va_arg(ap, uint32_t)); in lws_open() 222 n = open(__file, __oflag, (mode_t)va_arg(ap, unsigned int)); in lws_open() 225 n = open(__file, __oflag); in lws_open()
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-misc.h | 842 * \param __file: the filepath to open 850 lws_open(const char *__file, int __oflag, ...);
|
/third_party/zlib/test/ |
H A D | minigzip.c | 54 # define fileno(file) file->__file
|
Completed in 6 milliseconds