Searched refs:_zip_source_call (Results 1 – 16 of 16) sorted by relevance
/PHP-7.3/ext/zip/lib/ |
H A D | zip_source_call.c | 39 _zip_source_call(zip_source_t *src, void *data, zip_uint64_t length, zip_source_cmd_t command) in _zip_source_call() function 59 if (_zip_source_call(src, e, sizeof(e), ZIP_SOURCE_ERROR) < 0) { in _zip_source_call()
|
H A D | zip_source_tell_write.c | 46 return _zip_source_call(src, NULL, 0, ZIP_SOURCE_TELL_WRITE); in zip_source_tell_write()
|
H A D | zip_source_tell.c | 49 return _zip_source_call(src, NULL, 0, ZIP_SOURCE_TELL); in zip_source_tell()
|
H A D | zip_source_begin_write.c | 46 if (_zip_source_call(src, NULL, 0, ZIP_SOURCE_BEGIN_WRITE) < 0) { in zip_source_begin_write()
|
H A D | zip_source_rollback_write.c | 45 _zip_source_call(src, NULL, 0, ZIP_SOURCE_ROLLBACK_WRITE); in zip_source_rollback_write()
|
H A D | zip_source_write.c | 46 return _zip_source_call(src, (void *)data, length, ZIP_SOURCE_WRITE); in zip_source_write()
|
H A D | zip_source_remove.c | 54 if (_zip_source_call(src, NULL, 0, ZIP_SOURCE_REMOVE) < 0) { in zip_source_remove()
|
H A D | zip_source_read.c | 49 return _zip_source_call(src, data, len, ZIP_SOURCE_READ); in zip_source_read()
|
H A D | zip_source_close.c | 48 _zip_source_call(src, NULL, 0, ZIP_SOURCE_CLOSE); in zip_source_close()
|
H A D | zip_source_commit_write.c | 56 if (_zip_source_call(src, NULL, 0, ZIP_SOURCE_COMMIT_WRITE) < 0) { in zip_source_commit_write()
|
H A D | zip_source_stat.c | 58 if (_zip_source_call(src, st, sizeof(*st), ZIP_SOURCE_STAT) < 0) { in zip_source_stat()
|
H A D | zip_source_seek_write.c | 51 return (_zip_source_call(src, &args, sizeof(args), ZIP_SOURCE_SEEK_WRITE) < 0 ? -1 : 0); in zip_source_seek_write()
|
H A D | zip_source_free.c | 65 (void)_zip_source_call(src, NULL, 0, ZIP_SOURCE_FREE); in zip_source_free()
|
H A D | zip_source_open.c | 62 if (_zip_source_call(src, NULL, 0, ZIP_SOURCE_OPEN) < 0) { in zip_source_open()
|
H A D | zip_source_seek.c | 54 return (_zip_source_call(src, &args, sizeof(args), ZIP_SOURCE_SEEK) < 0 ? -1 : 0); in zip_source_seek()
|
H A D | zipint.h | 554 zip_int64_t _zip_source_call(zip_source_t *src, void *data, zip_uint64_t length, zip_source_cmd_t c…
|
Completed in 25 milliseconds