OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cdev
(Results
1 - 2
of
2
) sorted by null
/external/kernel-headers/original/linux/
cdev.h
5
struct
cdev
{
struct
14
void cdev_init(struct
cdev
*, const struct file_operations *);
16
struct
cdev
*cdev_alloc(void);
18
void cdev_put(struct
cdev
*p);
20
int cdev_add(struct
cdev
*, dev_t, unsigned);
22
void cdev_del(struct
cdev
*);
/system/core/fastboot/
usb_linux.c
185
char
cdev
[128];
local
189
snprintf(
cdev
, sizeof(
cdev
), "/sys/dev/char/%d:%d",
191
link_len = readlink(
cdev
, link, sizeof(link) - 1);
Completed in 204 milliseconds