/bionic/libc/kernel/common/linux/ |
D | device.h | 55 int (*match)(struct device * dev, struct device_driver * drv); 56 int (*uevent)(struct device *dev, char **envp, 59 int (*probe)(struct device * dev); 60 int (*remove)(struct device * dev); 61 void (*shutdown)(struct device * dev); 62 int (*suspend)(struct device * dev, pm_message_t state); 64 int (*resume)(struct device * dev); 86 int (*probe) (struct device * dev); 87 int (*remove) (struct device * dev); 89 void (*shutdown) (struct device * dev); [all …]
|
D | kdev_t.h | 21 #define MAJOR(dev) ((dev)>>8) argument 22 #define MINOR(dev) ((dev) & 0xff) argument
|
D | platform_device.h | 26 struct device dev; member 31 #define to_platform_device(x) container_of((x), struct platform_device, dev) 42 #define platform_get_drvdata(_dev) dev_get_drvdata(&(_dev)->dev) 44 #define platform_set_drvdata(_dev,data) dev_set_drvdata(&(_dev)->dev, (data))
|
D | mca.h | 24 typedef int (*MCA_ProcFn)(char* buf, int slot, void* dev); 44 struct device dev; member 47 #define to_mca_device(mdev) container_of(mdev, struct mca_device, dev) 66 struct device dev; member 70 #define to_mca_bus(mdev) container_of(mdev, struct mca_bus, dev)
|
D | soundcard.h | 659 #define MIXER_READ(dev) _SIOR('M', dev, int) argument 691 #define MIXER_WRITE(dev) _SIOWR('M', dev, int) argument 799 #define SEQ_LOAD_GMINSTR(dev, instr) OSS_patch_caching(dev, -1, instr, seqfd, _seqbuf, _seqbuflen) argument 800 #define SEQ_LOAD_GMDRUM(dev, drum) OSS_drum_caching(dev, -1, drum, seqfd, _seqbuf, _seqbuflen) argument 802 #define SEQ_LOAD_GMINSTR(dev, instr) argument 804 #define SEQ_LOAD_GMDRUM(dev, drum) argument 817 …LUME_MODE(dev, mode) {_SEQ_NEEDBUF(8); _seqbuf[_seqbufptr] = SEQ_EXTENDED; _seqbuf[_seqbufptr+1]… argument 819 #define _CHN_VOICE(dev, event, chn, note, parm) {_SEQ_NEEDBUF(8); _seqbuf[_seqbufptr] = EV_CHN_V… argument 820 #define SEQ_START_NOTE(dev, chn, note, vol) _CHN_VOICE(dev, MIDI_NOTEON, chn, note, vol) argument 821 #define SEQ_STOP_NOTE(dev, chn, note, vol) _CHN_VOICE(dev, MIDI_NOTEOFF, chn, note, vol) argument [all …]
|
D | clk.h | 24 struct clk *clk_get(struct device *dev, const char *id);
|
D | dm-ioctl.h | 39 uint64_t dev; member 57 uint64_t dev[0]; member 61 uint64_t dev; member
|
D | miscdevice.h | 61 struct device *dev; member
|
D | ioport.h | 36 struct pci_dev *dev; member
|
D | if_pppox.h | 37 char dev[IFNAMSIZ]; member
|
D | skbuff.h | 110 struct net_device *dev; member
|
D | coda.h | 264 cdev_t dev; member
|
/bionic/libc/kernel/common/linux/mtd/ |
D | blktrans.h | 49 int (*readsect)(struct mtd_blktrans_dev *dev, 51 int (*writesect)(struct mtd_blktrans_dev *dev, 54 int (*getgeo)(struct mtd_blktrans_dev *dev, struct hd_geometry *geo); 55 int (*flush)(struct mtd_blktrans_dev *dev); 56 int (*open)(struct mtd_blktrans_dev *dev); 57 int (*release)(struct mtd_blktrans_dev *dev); 60 void (*remove_dev)(struct mtd_blktrans_dev *dev);
|
D | mtd.h | 49 u_int dev; member
|
/bionic/libc/kernel/arch-arm/asm/ |
D | memory.h | 86 #define page_to_dma(dev, page) ((dma_addr_t)__virt_to_bus((unsigned long)page_address(page))) argument 87 #define dma_to_virt(dev, addr) ((void *)__bus_to_virt(addr)) argument 89 #define virt_to_dma(dev, addr) ((dma_addr_t)__virt_to_bus((unsigned long)(addr))) argument 91 #define page_to_dma(dev, page) (__arch_page_to_dma(dev, page)) argument 92 #define dma_to_virt(dev, addr) (__arch_dma_to_virt(dev, addr)) argument 94 #define virt_to_dma(dev, addr) (__arch_virt_to_dma(dev, addr)) argument
|
/bionic/libc/kernel/common/linux/mmc/ |
D | card.h | 66 struct device dev; member 99 #define mmc_card_id(c) ((c)->dev.bus_id) 101 #define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev) 102 #define mmc_set_drvdata(c,d) dev_set_drvdata(&(c)->dev, d)
|
D | host.h | 85 struct device *dev; member 119 #define mmc_dev(x) ((x)->dev)
|
/bionic/libc/kernel/arch-arm/asm/arch/ |
D | board.h | 99 int (*set_power)(struct device *dev, int state);
|
/bionic/libc/bionic/ |
D | fts.c | 793 dev_t dev; in fts_stat() local 830 dev = p->fts_dev = sbp->st_dev; in fts_stat() 845 if (ino == t->fts_ino && dev == t->fts_dev) { in fts_stat()
|