![]() |
Kodi Documentation 18.0
Kodi is an open source media player and entertainment hub.
|
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/statvfs.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdarg.h>
#include <dirent.h>
#include <dlfcn.h>
Functions | |
void * | dllmalloc (size_t) |
void * | dllcalloc (size_t, size_t) |
void * | dllrealloc (void *, size_t) |
void | dllfree (void *) |
int | dll_open (const char *szFileName, int iMode) |
int | dll_write (int fd, const void *buffer, unsigned int uiSize) |
int | dll_read (int fd, void *buffer, unsigned int uiSize) |
off_t | dll_lseek (int fd, __off_t lPos, int iWhence) |
__off64_t | dll_lseeki64 (int fd, __off64_t lPos, int iWhence) |
int | dll_close (int fd) |
FILE * | dll_fopen (const char *filename, const char *mode) |
FILE * | dll_freopen (const char *path, const char *mode, FILE *stream) |
FILE * | dll_fdopen (int i, const char *file) |
int | dll_fclose (FILE *stream) |
int | dll_ferror (FILE *stream) |
int | dll_feof (FILE *stream) |
int | dll_fileno (FILE *stream) |
void | dll_clearerr (FILE *stream) |
int | dll_fread (void *buffer, size_t size, size_t count, FILE *stream) |
size_t | dll_fwrite (const void *buffer, size_t size, size_t count, FILE *stream) |
int | dll_fflush (FILE *stream) |
int | dll_fputc (int character, FILE *stream) |
int | dll_fputs (const char *szLine, FILE *stream) |
int | dll_putc (int c, FILE *stream) |
int | dll_fseek (FILE *stream, long offset, int origin) |
int | dll_fseek64 (FILE *stream, off64_t offset, int origin) |
long | dll_ftell (FILE *stream) |
off64_t | dll_ftell64 (FILE *stream) |
void | dll_rewind (FILE *stream) |
int | dll_fgetpos (FILE *stream, fpos_t *pos) |
int | dll_fgetpos64 (FILE *stream, fpos64_t *pos) |
int | dll_fsetpos (FILE *stream, const fpos_t *pos) |
int | dll_fsetpos64 (FILE *stream, const fpos64_t *pos) |
DIR * | dll_opendir (const char *name) |
struct dirent * | dll_readdir (DIR *dirp) |
int | dll_closedir (DIR *dirp) |
void | dll_rewinddir (DIR *dirp) |
int | dll_fprintf (FILE *stream, const char *format,...) |
int | dllprintf (const char *format,...) |
int | dll_vfprintf (FILE *stream, const char *format, va_list va) |
int | dll_fgetc (FILE *stream) |
char * | dll_fgets (char *pszString, int num, FILE *stream) |
int | dll_getc (FILE *stream) |
int | dll_ungetc (int c, FILE *stream) |
int | dll_ioctl (int d, unsigned long int request, va_list va) |
int | dll_stat (const char *path, struct _stat *buffer) |
int | dll_stat64 (const char *path, struct stat64 *buffer) |
void | dll_flockfile (FILE *file) |
int | dll_ftrylockfile (FILE *file) |
void | dll_funlockfile (FILE *file) |
int | dll_fstat64 (int fd, struct stat64 *buf) |
int | dll_fstat (int fd, struct _stat *buf) |
FILE * | dll_popen (const char *command, const char *mode) |
void * | dll_dlopen (const char *filename, int flag) |
int | dll_setvbuf (FILE *stream, char *buf, int type, size_t size) |
struct mntent * | dll_getmntent (FILE *fp) |
void * | __wrap_dlopen (const char *filename, int flag) |
FILE * | __wrap_popen (const char *command, const char *mode) |
void * | __wrap_calloc (size_t num, size_t size) |
void * | __wrap_malloc (size_t size) |
void * | __wrap_realloc (void *memblock, size_t size) |
void | __wrap_free (void *pPtr) |
int | __wrap_open (const char *file, int oflag,...) |
int | __wrap_open64 (const char *file, int oflag,...) |
int | __wrap_close (int fd) |
ssize_t | __wrap_write (int fd, const void *buf, size_t count) |
ssize_t | __wrap_read (int fd, void *buf, size_t count) |
__off_t | __wrap_lseek (int filedes, __off_t offset, int whence) |
__off64_t | __wrap_lseek64 (int filedes, __off64_t offset, int whence) |
int | __wrap_fclose (FILE *fp) |
int | __wrap_ferror (FILE *stream) |
void | __wrap_clearerr (FILE *stream) |
int | __wrap_feof (FILE *stream) |
int | __wrap_fileno (FILE *stream) |
FILE * | __wrap_fopen (const char *path, const char *mode) |
FILE * | __wrap_fopen64 (const char *path, const char *mode) |
FILE * | __wrap_fdopen (int filedes, const char *mode) |
FILE * | __wrap_freopen (const char *path, const char *mode, FILE *stream) |
size_t | __wrap_fread (void *ptr, size_t size, size_t nmemb, FILE *stream) |
size_t | __wrap_fwrite (const void *ptr, size_t size, size_t nmemb, FILE *stream) |
int | __wrap_fflush (FILE *stream) |
int | __wrap_fputc (int c, FILE *stream) |
int | __wrap_fputs (const char *s, FILE *stream) |
int | __wrap__IO_putc (int c, FILE *stream) |
int | __wrap_fseek (FILE *stream, long offset, int whence) |
int | __wrap_fseeko64 (FILE *stream, off64_t offset, int whence) |
long | __wrap_ftell (FILE *stream) |
off64_t | __wrap_ftello64 (FILE *stream) |
void | __wrap_rewind (FILE *stream) |
int | __wrap_fgetpos (FILE *stream, fpos_t *pos) |
int | __wrap_fgetpos64 (FILE *stream, fpos64_t *pos) |
int | __wrap_fsetpos (FILE *stream, fpos_t *pos) |
int | __wrap_fsetpos64 (FILE *stream, fpos64_t *pos) |
DIR * | __wrap_opendir (const char *name) |
struct dirent * | __wrap_readdir (DIR *dirp) |
struct dirent * | __wrap_readdir64 (DIR *dirp) |
int | __wrap_closedir (DIR *dirp) |
void | __wrap_rewinddir (DIR *dirp) |
int | __wrap_fprintf (FILE *stream, const char *format,...) |
int | __wrap_vfprintf (FILE *stream, const char *format, va_list ap) |
int | __wrap_printf (const char *format,...) |
int | __wrap_fgetc (FILE *stream) |
char * | __wrap_fgets (char *s, int size, FILE *stream) |
int | __wrap__IO_getc (FILE *stream) |
int | __wrap__IO_getc_unlocked (FILE *stream) |
int | __wrap_getc_unlocked (FILE *stream) |
int | __wrap_ungetc (int c, FILE *stream) |
int | __wrap_getc (FILE *stream) |
int | __wrap_ioctl (int d, unsigned long int request,...) |
int | __wrap__stat (const char *path, struct _stat *buffer) |
int | __wrap_stat (const char *path, struct _stat *buffer) |
int | __wrap___xstat (int __ver, const char *__filename, struct stat *__stat_buf) |
int | __wrap___xstat64 (int __ver, const char *__filename, struct stat64 *__stat_buf) |
int | __wrap___lxstat64 (int __ver, const char *__filename, struct stat64 *__stat_buf) |
void | __wrap_flockfile (FILE *file) |
int | __wrap_ftrylockfile (FILE *file) |
void | __wrap_funlockfile (FILE *file) |
int | __wrap___fxstat64 (int ver, int fd, struct stat64 *buf) |
int | __wrap___fxstat (int ver, int fd, struct stat *buf) |
int | __wrap_fstat (int fd, struct _stat *buf) |
int | __wrap_setvbuf (FILE *stream, char *buf, int type, size_t size) |
struct mntent * | __wrap_getmntent (FILE *fp) |
int __wrap___fxstat | ( | int | ver, |
int | fd, | ||
struct stat * | buf | ||
) |
int __wrap___fxstat64 | ( | int | ver, |
int | fd, | ||
struct stat64 * | buf | ||
) |
int __wrap___lxstat64 | ( | int | __ver, |
const char * | __filename, | ||
struct stat64 * | __stat_buf | ||
) |
int __wrap___xstat | ( | int | __ver, |
const char * | __filename, | ||
struct stat * | __stat_buf | ||
) |
int __wrap___xstat64 | ( | int | __ver, |
const char * | __filename, | ||
struct stat64 * | __stat_buf | ||
) |
int __wrap__IO_getc | ( | FILE * | stream | ) |
int __wrap__IO_getc_unlocked | ( | FILE * | stream | ) |
int __wrap__IO_putc | ( | int | c, |
FILE * | stream | ||
) |
int __wrap__stat | ( | const char * | path, |
struct _stat * | buffer | ||
) |
void * __wrap_calloc | ( | size_t | num, |
size_t | size | ||
) |
void __wrap_clearerr | ( | FILE * | stream | ) |
int __wrap_close | ( | int | fd | ) |
int __wrap_closedir | ( | DIR * | dirp | ) |
void * __wrap_dlopen | ( | const char * | filename, |
int | flag | ||
) |
int __wrap_fclose | ( | FILE * | fp | ) |
FILE * __wrap_fdopen | ( | int | filedes, |
const char * | mode | ||
) |
int __wrap_feof | ( | FILE * | stream | ) |
int __wrap_ferror | ( | FILE * | stream | ) |
int __wrap_fflush | ( | FILE * | stream | ) |
int __wrap_fgetc | ( | FILE * | stream | ) |
int __wrap_fgetpos | ( | FILE * | stream, |
fpos_t * | pos | ||
) |
int __wrap_fgetpos64 | ( | FILE * | stream, |
fpos64_t * | pos | ||
) |
char * __wrap_fgets | ( | char * | s, |
int | size, | ||
FILE * | stream | ||
) |
int __wrap_fileno | ( | FILE * | stream | ) |
void __wrap_flockfile | ( | FILE * | file | ) |
FILE * __wrap_fopen | ( | const char * | path, |
const char * | mode | ||
) |
FILE * __wrap_fopen64 | ( | const char * | path, |
const char * | mode | ||
) |
int __wrap_fprintf | ( | FILE * | stream, |
const char * | format, | ||
... | |||
) |
int __wrap_fputc | ( | int | c, |
FILE * | stream | ||
) |
int __wrap_fputs | ( | const char * | s, |
FILE * | stream | ||
) |
size_t __wrap_fread | ( | void * | ptr, |
size_t | size, | ||
size_t | nmemb, | ||
FILE * | stream | ||
) |
FILE * __wrap_freopen | ( | const char * | path, |
const char * | mode, | ||
FILE * | stream | ||
) |
int __wrap_fseek | ( | FILE * | stream, |
long | offset, | ||
int | whence | ||
) |
int __wrap_fseeko64 | ( | FILE * | stream, |
off64_t | offset, | ||
int | whence | ||
) |
int __wrap_fsetpos | ( | FILE * | stream, |
fpos_t * | pos | ||
) |
int __wrap_fsetpos64 | ( | FILE * | stream, |
fpos64_t * | pos | ||
) |
int __wrap_fstat | ( | int | fd, |
struct _stat * | buf | ||
) |
long __wrap_ftell | ( | FILE * | stream | ) |
off64_t __wrap_ftello64 | ( | FILE * | stream | ) |
int __wrap_ftrylockfile | ( | FILE * | file | ) |
void __wrap_funlockfile | ( | FILE * | file | ) |
size_t __wrap_fwrite | ( | const void * | ptr, |
size_t | size, | ||
size_t | nmemb, | ||
FILE * | stream | ||
) |
int __wrap_getc | ( | FILE * | stream | ) |
int __wrap_getc_unlocked | ( | FILE * | stream | ) |
struct mntent * __wrap_getmntent | ( | FILE * | fp | ) |
int __wrap_ioctl | ( | int | d, |
unsigned long int | request, | ||
... | |||
) |
void * __wrap_malloc | ( | size_t | size | ) |
int __wrap_open | ( | const char * | file, |
int | oflag, | ||
... | |||
) |
int __wrap_open64 | ( | const char * | file, |
int | oflag, | ||
... | |||
) |
DIR * __wrap_opendir | ( | const char * | name | ) |
FILE * __wrap_popen | ( | const char * | command, |
const char * | mode | ||
) |
int __wrap_printf | ( | const char * | format, |
... | |||
) |
void __wrap_rewind | ( | FILE * | stream | ) |
int __wrap_setvbuf | ( | FILE * | stream, |
char * | buf, | ||
int | type, | ||
size_t | size | ||
) |
int __wrap_stat | ( | const char * | path, |
struct _stat * | buffer | ||
) |
int __wrap_ungetc | ( | int | c, |
FILE * | stream | ||
) |
int __wrap_vfprintf | ( | FILE * | stream, |
const char * | format, | ||
va_list | ap | ||
) |
void dll_clearerr | ( | FILE * | stream | ) |
int dll_close | ( | int | fd | ) |
int dll_closedir | ( | DIR * | dirp | ) |
void * dll_dlopen | ( | const char * | filename, |
int | flag | ||
) |
int dll_fclose | ( | FILE * | stream | ) |
FILE * dll_fdopen | ( | int | i, |
const char * | file | ||
) |
int dll_feof | ( | FILE * | stream | ) |
int dll_ferror | ( | FILE * | stream | ) |
int dll_fflush | ( | FILE * | stream | ) |
int dll_fgetc | ( | FILE * | stream | ) |
int dll_fgetpos | ( | FILE * | stream, |
fpos_t * | pos | ||
) |
int dll_fgetpos64 | ( | FILE * | stream, |
fpos64_t * | pos | ||
) |
char * dll_fgets | ( | char * | pszString, |
int | num, | ||
FILE * | stream | ||
) |
int dll_fileno | ( | FILE * | stream | ) |
void dll_flockfile | ( | FILE * | file | ) |
FILE * dll_fopen | ( | const char * | filename, |
const char * | mode | ||
) |
int dll_fprintf | ( | FILE * | stream, |
const char * | format, | ||
... | |||
) |
int dll_fputc | ( | int | character, |
FILE * | stream | ||
) |
int dll_fputs | ( | const char * | szLine, |
FILE * | stream | ||
) |
int dll_fread | ( | void * | buffer, |
size_t | size, | ||
size_t | count, | ||
FILE * | stream | ||
) |
FILE * dll_freopen | ( | const char * | path, |
const char * | mode, | ||
FILE * | stream | ||
) |
int dll_fseek | ( | FILE * | stream, |
long | offset, | ||
int | origin | ||
) |
int dll_fseek64 | ( | FILE * | stream, |
off64_t | offset, | ||
int | origin | ||
) |
int dll_fsetpos | ( | FILE * | stream, |
const fpos_t * | pos | ||
) |
int dll_fsetpos64 | ( | FILE * | stream, |
const fpos64_t * | pos | ||
) |
int dll_fstat | ( | int | fd, |
struct _stat * | buf | ||
) |
int dll_fstat64 | ( | int | fd, |
struct stat64 * | buf | ||
) |
long dll_ftell | ( | FILE * | stream | ) |
off64_t dll_ftell64 | ( | FILE * | stream | ) |
int dll_ftrylockfile | ( | FILE * | file | ) |
void dll_funlockfile | ( | FILE * | file | ) |
size_t dll_fwrite | ( | const void * | buffer, |
size_t | size, | ||
size_t | count, | ||
FILE * | stream | ||
) |
int dll_getc | ( | FILE * | stream | ) |
struct mntent * dll_getmntent | ( | FILE * | fp | ) |
int dll_ioctl | ( | int | d, |
unsigned long int | request, | ||
va_list | va | ||
) |
off_t dll_lseek | ( | int | fd, |
__off_t | lPos, | ||
int | iWhence | ||
) |
int dll_open | ( | const char * | szFileName, |
int | iMode | ||
) |
DIR * dll_opendir | ( | const char * | name | ) |
FILE * dll_popen | ( | const char * | command, |
const char * | mode | ||
) |
int dll_putc | ( | int | c, |
FILE * | stream | ||
) |
int dll_read | ( | int | fd, |
void * | buffer, | ||
unsigned int | uiSize | ||
) |
void dll_rewind | ( | FILE * | stream | ) |
int dll_setvbuf | ( | FILE * | stream, |
char * | buf, | ||
int | type, | ||
size_t | size | ||
) |
int dll_stat | ( | const char * | path, |
struct _stat * | buffer | ||
) |
int dll_stat64 | ( | const char * | path, |
struct stat64 * | buffer | ||
) |
int dll_ungetc | ( | int | c, |
FILE * | stream | ||
) |
int dll_vfprintf | ( | FILE * | stream, |
const char * | format, | ||
va_list | va | ||
) |
int dll_write | ( | int | fd, |
const void * | buffer, | ||
unsigned int | uiSize | ||
) |
void * dllcalloc | ( | size_t | num, |
size_t | size | ||
) |
void * dllmalloc | ( | size_t | size | ) |
int dllprintf | ( | const char * | format, |
... | |||
) |