代码搜索:DEV

找到约 10,000 项符合「DEV」的源代码

代码结果 10,000
www.eeworm.com/read/209540/15217693

cpp qextserialport.cpp

/*! \class QextSerialPort \version 0.70 (pre-alpha) \author Wayne Roth A cross-platform serial port class. This class encapsulates a serial port on both POSIX and Windows systems. The user wil
www.eeworm.com/read/209315/15223579

txt framebuffer.txt

The Frame Buffer Device ----------------------- Maintained by Geert Uytterhoeven Last revised: May 10, 2001 0. Introduction --------------- The frame buffer device pro
www.eeworm.com/read/209081/15227486

s bootsect.s

! ! SYS_SIZE is the number of clicks (16 bytes) to be loaded. ! 0x3000 is 0x30000 bytes = 196kB, more than enough for current ! versions of linux ! SYS_SIZE 是要加载的节数(16 字节为1 节)。0x3000 共为 1 2 3 4 5 6 0x
www.eeworm.com/read/209081/15227547

c bitmap.c

/* * linux/fs/bitmap.c * * (C) 1991 Linus Torvalds */ /* bitmap.c contains the code that handles the inode and block bitmaps */ /* bitmap.c 程序含有处理i 节点和磁盘块位图的代码 */ #include // 字符串头文件。主要定义了
www.eeworm.com/read/208727/15238669

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
www.eeworm.com/read/208225/15250567

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/208210/15250803

run

#!/usr/bin/sh java loader.main.LoaderFrame > /dev/null 2>&1 &
www.eeworm.com/read/208180/15251449

makedev

#!/bin/bash function makedev () { for dev in 0 1 2 3; do echo "/dev/$1$dev: char 81 $[ $2 + $dev ]" rm -f /dev/$1$dev mknod /dev/$1$dev c 81 $[ $2 + $dev ] chmod 666 /dev/$1$dev done # s
www.eeworm.com/read/208180/15251464

c saa7134-oss.c

/* * device driver for philips saa7134 based TV cards * oss dsp interface * * (c) 2001,02 Gerd Knorr [SuSE Labs] * * This program is free software; you can redistribute it
www.eeworm.com/read/207820/15261456

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