f19af37b5e
I've been campaigning against readdir_r for years: http://elliotth.blogspot.com/2012/10/how-not-to-use-readdirr3.html and glibc deprecated it in 2.24, so we should join the club. Bug: http://b/32678321 Test: builds Change-Id: Ie3887ed75989aced9324266aa3b93e85c11bdbc9
102 lines
4 KiB
C
102 lines
4 KiB
C
/*
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef _DIRENT_H_
|
|
#define _DIRENT_H_
|
|
|
|
#include <stdint.h>
|
|
#include <sys/cdefs.h>
|
|
#include <sys/types.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#ifndef DT_UNKNOWN
|
|
#define DT_UNKNOWN 0
|
|
#define DT_FIFO 1
|
|
#define DT_CHR 2
|
|
#define DT_DIR 4
|
|
#define DT_BLK 6
|
|
#define DT_REG 8
|
|
#define DT_LNK 10
|
|
#define DT_SOCK 12
|
|
#define DT_WHT 14
|
|
#endif
|
|
|
|
#if defined(__LP64__)
|
|
#define __DIRENT64_INO_T ino_t
|
|
#else
|
|
#define __DIRENT64_INO_T uint64_t /* Historical accident. */
|
|
#endif
|
|
|
|
#define __DIRENT64_BODY \
|
|
__DIRENT64_INO_T d_ino; \
|
|
off64_t d_off; \
|
|
unsigned short d_reclen; \
|
|
unsigned char d_type; \
|
|
char d_name[256]; \
|
|
|
|
struct dirent { __DIRENT64_BODY };
|
|
struct dirent64 { __DIRENT64_BODY };
|
|
|
|
#undef __DIRENT64_BODY
|
|
#undef __DIRENT64_INO_T
|
|
|
|
/* glibc compatibility. */
|
|
#undef _DIRENT_HAVE_D_NAMLEN /* Linux doesn't have a d_namlen field. */
|
|
#define _DIRENT_HAVE_D_RECLEN
|
|
#define _DIRENT_HAVE_D_OFF
|
|
#define _DIRENT_HAVE_D_TYPE
|
|
|
|
#define d_fileno d_ino
|
|
|
|
typedef struct DIR DIR;
|
|
|
|
DIR* opendir(const char* __path);
|
|
DIR* fdopendir(int __dir_fd);
|
|
struct dirent* readdir(DIR* __dir);
|
|
struct dirent64* readdir64(DIR* __dir) __INTRODUCED_IN(21);
|
|
int readdir_r(DIR* __dir, struct dirent* __entry, struct dirent** __buffer) __attribute__((__deprecated__("readdir_r is deprecated; use readdir instead")));
|
|
int readdir64_r(DIR* __dir, struct dirent64* __entry, struct dirent64** __buffer) __INTRODUCED_IN(21) __attribute__((__deprecated__("readdir64_r is deprecated; use readdir64 instead")));
|
|
int closedir(DIR* __dir);
|
|
void rewinddir(DIR* __dir);
|
|
void seekdir(DIR* __dir, long __location) __INTRODUCED_IN(23);
|
|
long telldir(DIR* __dir) __INTRODUCED_IN(23);
|
|
int dirfd(DIR* __dir);
|
|
int alphasort(const struct dirent** __lhs, const struct dirent** __rhs);
|
|
int alphasort64(const struct dirent64** __lhs, const struct dirent64** __rhs) __INTRODUCED_IN(21);
|
|
int scandir64(const char* __path, struct dirent64*** __name_list, int (*__filter)(const struct dirent64*), int (*__comparator)(const struct dirent64**, const struct dirent64**)) __INTRODUCED_IN(21);
|
|
int scandir(const char* __path, struct dirent*** __name_list, int (*__filter)(const struct dirent*), int (*__comparator)(const struct dirent**, const struct dirent**));
|
|
|
|
#if defined(__USE_GNU)
|
|
int scandirat64(int __dir_fd, const char* __path, struct dirent64*** __name_list, int (*__filter)(const struct dirent64*), int (*__comparator)(const struct dirent64**, const struct dirent64**)) __INTRODUCED_IN(24);
|
|
int scandirat(int __dir_fd, const char* __path, struct dirent*** __name_list, int (*__filter)(const struct dirent*), int (*__comparator)(const struct dirent**, const struct dirent**)) __INTRODUCED_IN(24);
|
|
#endif
|
|
|
|
__END_DECLS
|
|
|
|
#endif
|