OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pooled_fd
(Results
1 - 3
of
3
) sorted by null
/system/extras/fatblock/
fdpool.h
20
struct
pooled_fd
{
struct
21
struct
pooled_fd
*prev;
22
struct
pooled_fd
*next;
26
void fdpool_init(struct
pooled_fd
*pfd);
27
int fdpool_open(struct
pooled_fd
*pfd, const char *pathname, int flags);
28
void fdpool_close(struct
pooled_fd
*pfd);
fdpool.c
28
static struct
pooled_fd
fdpool_head = {
35
static void fdpool_insert_head(struct
pooled_fd
*node)
37
struct
pooled_fd
*prev = &fdpool_head;
38
struct
pooled_fd
*next = prev->next;
50
static void fdpool_remove(struct
pooled_fd
*node)
52
struct
pooled_fd
*prev = node->prev;
53
struct
pooled_fd
*next = node->next;
64
static struct
pooled_fd
*fdpool_remove_tail(void)
66
struct
pooled_fd
*tail = fdpool_head.prev;
75
static void fdpool_clear(struct
pooled_fd
*pfd
[
all
...]
fatblock.h
53
struct
pooled_fd
pfd;
Completed in 37 milliseconds