Searched refs:file_read (Results 1 - 9 of 9) sorted by relevance
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bss_file.c | 36 static int file_read(BIO *h, char *buf, int size); 48 file_read, 136 static int file_read(BIO *b, char *out, int outl) in file_read() function 380 static int file_read(BIO *b, char *out, int outl) in file_read() function 411 file_read,
|
/third_party/openssl/crypto/bio/ |
H A D | bss_file.c | 36 static int file_read(BIO *h, char *buf, int size); 48 file_read, 136 static int file_read(BIO *b, char *out, int outl) in file_read() function 380 static int file_read(BIO *b, char *out, int outl) in file_read() function 411 file_read,
|
/third_party/NuttX/fs/vfs/ |
H A D | fs_read.c | 42 * Name: file_read 45 * file_read() is an interanl OS interface. It is functionally similar to 64 ssize_t file_read(struct file *filep, void *buf, size_t nbytes) in file_read() function 213 /* Then let file_read do all of the work */ in read() 215 return file_read(filep, buf, nbytes); in read()
|
H A D | fs_pread64.c | 97 ret = file_read(filep, buf, nbytes);
in file_pread64()
|
H A D | fs_pread.c | 79 ret = file_read(filep, buf, nbytes); in file_pread()
|
/third_party/ffmpeg/libavformat/ |
H A D | file.c | 111 static int file_read(URLContext *h, unsigned char *buf, int size) in file_read() function 358 .url_read = file_read, 404 .url_read = file_read,
|
/third_party/python/Lib/ |
H A D | pickle.py | 265 def __init__(self, file_read, file_readline, file_tell=None): 266 self.file_read = file_read 276 buf[:] = self.file_read(n) 284 buf[:] = self.file_read(n) 292 return self.file_read(n) 298 return self.file_read(n) 317 self.current_frame = io.BytesIO(self.file_read(frame_size))
|
H A D | socket.py | 426 file_read = file.read 434 data = memoryview(file_read(blocksize))
|
/third_party/NuttX/fs/vfs/include/ |
H A D | file.h | 329 * Name: file_read 332 * file_read() is an internal OS interface. It is functionally similar to 352 ssize_t file_read(struct file *filep, void *buf, size_t nbytes);
|
Completed in 12 milliseconds