代码搜索结果

找到约 110,635 项符合 Driver 的代码

driver.cpp

// // Driver.c - Chapter 17 - Crasher Driver // // Copyright (C) 2000 by Jerry Lozano // #include "Driver.h" static ULONG CrashPoint; // Determines where the // driver will crash.

driver.h

// File Name: // Driver.h // // Contents: // Constants, structures, and function // declarations specific to this driver. // #pragma once // // Header files // extern "C" { #include

driver.h

// File Name: // Driver.h // // Contents: // Constants, structures, and function // declarations specific to this driver. // #pragma once // // Header files // extern "C" { #include

driver.h

// driver.h -- Declarations for STUPID.SYS (DFW version) // Copyright (C) 2003 by Walter Oney // All rights reserved #pragma once #define DRIVERNAME "STUPID" //////////////////////

driver.cpp

// Driver.cpp -- Driver object management for STUPID.SYS (DFW version) // Copyright (C) 2003 by Walter Oney // All rights reserved // STUPID.SYS is the simplest possible framework-based driver. I

driver.h

/************************************************************************************ * Copyright (c) 2004,西安铭朗电子科技有限责任公司 * All rights reserved. * * 文件名称: driver.h * 文件标识: none * 适用器

driver.c

/************************************************************************* Include files *************************************************************************/ #include "driver.h" /*********

driver.java

public class Driver { public static void main( String arg[] ) { SimpleThread t1 = new SimpleThread(); t1.start(); } }

driver.java

public class Driver { public static void main( String arg[] ) { SimpleThread t1 = new SimpleThread("Hassaan"); SimpleThread t2 = new SimpleThread("Yasir"); t1

driver.java

public class Driver extends Thread { public static final int MAX_PRIMES = 100000; public static final int TEN_SECONDS = 10000; public static volatile boolean finish = false; pub