代码搜索:dev
找到约 10,000 项符合「dev」的源代码
代码结果 10,000
www.eeworm.com/read/113587/15452603
simple_load
#!/bin/sh
module="simple"
device="simple"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staff"
else
www.eeworm.com/read/113381/15457039
c cpia.c
/*
* USB CPiA Video Camera driver
*
* Supports CPiA based Video Cameras. Many manufacturers use this chipset.
* There's a good chance, if you have a USB video camera, it's a CPiA based
* one.
*
www.eeworm.com/read/113381/15457044
c printer.c
/*
* printer.c Version 0.3
*
* Copyright (c) 1999 Michael Gee
* Copyright (c) 1999 Pavel Machek
* Copyright (c) 2000 Vojtech Pavlik
www.eeworm.com/read/113381/15457103
c proc_usb.c
/*
* drivers/usb/proc_usb.c
* (C) Copyright 1999 Randy Dunlap.
* (C) Copyright 1999 Thomas Sailer . (proc file per device)
* (C) Copyright 1999 Deti Fliegl (new USB architec
www.eeworm.com/read/113381/15457115
c ov511.c
/*
* OmniVision OV511 Camera-to-USB Bridge Driver
* Copyright 1999 Mark W. McClelland
*
* Based on the Linux CPiA driver.
*
* Released under GPL v.2 license.
*
* Important keywords in comment
www.eeworm.com/read/112395/15488948
c galil_1800.c
/* Copyright (C) 2002, 2003 Shell Technologies s.r.l.
Authors: Marco Cesati
driver for the Galil 1800 PCI motion controllers (http://www.galilmc.com/)
loosely ins
www.eeworm.com/read/112269/15490483
c part_mac.c
/*
* (C) Copyright 2000
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free softwa
www.eeworm.com/read/110420/15534389
c n8250.c
/* OS- and machine-dependent stuff for the 8250 asynch chip on a IBM-PC
*/
#include
#include
#include
#include "global.h"
#include "mbuf.h"
#include "proc.h"
#incl
www.eeworm.com/read/110160/15540994
c ll_rw_blk.c
/*
* linux/kernel/blk_dev/ll_rw.c
*
* (C) 1991 Linus Torvalds
*/
/*
* This handles all read/write requests to block devices
*/
#include
#include
#include
www.eeworm.com/read/107624/15604555
cpp 模板友员访私有.cpp
#include
using namespace std;
void test(); //main()不能作为模版类的友元,所以...
template
class base {
friend void test();
public:
T* pub;
T* pri;
private:
void fx(void);
};
te