HomeSort by relevance Sort by last modified time
    Searched refs:driver (Results 226 - 250 of 1447) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/tools/versioner/src/
Driver.cpp 17 #include "Driver.h"
33 #include <clang/Driver/Compilation.h>
34 #include <clang/Driver/Driver.h>
93 // clang's driver is slow compared to the work it performs to compile our headers.
157 driver::Driver driver("versioner", llvm::sys::getDefaultTargetTriple(), *diags, vfs);
158 driver.setCheckInputsExist(false);
165 std::unique_ptr<driver::Compilation> Compilation(driver.BuildCompilation(driver_args))
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/
test_parser.py 11 from .support import driver, test_dir
22 from lib2to3.pgen2 import driver as pgen2_driver
32 t = driver.parse_string(s)
85 from lib2to3.pgen2 import driver as pgen2_driver
289 tree = driver.parse_string(source)
295 driver.parse_string("a, *b, c = x\n")
296 driver.parse_string("[*a, b] = x\n")
297 driver.parse_string("(z, *y, w) = m\n")
298 driver.parse_string("for *z, m in d: pass\n")
303 driver.parse_string(support.dedent(s) + "\n\n"
    [all...]
  /external/autotest/client/site_tests/network_UdevRename/
network_UdevRename.py 13 """Finds the driver associated with network interface.
16 @return String containing the kernel driver name for this interface
19 driver_file = '/sys/class/net/%s/device/driver/module' % ifname
33 """Finds an interface that we can unload the driver for.
37 and the name of the module used to load the driver.
42 and a 'wlan' key with the kernel module name for the driver.
50 driver = FindDriver(intf)
51 if driver is not None:
52 return {'intf': intf, 'driver': driver}
    [all...]
  /external/python/cpython3/Lib/lib2to3/tests/
pytree_idempotency.py 22 from ..pgen2 import driver
27 gr = driver.load_grammar("Grammar.txt")
28 dr = driver.Driver(gr, convert=pytree.convert)
  /frameworks/native/vulkan/libvulkan/
api.cpp 39 #include "driver.h"
124 if (!is_instance_ || !driver::Debuggable())
370 return (is_instance_ && driver::Debuggable() &&
421 const driver::DebugReportLogger& logger,
483 const driver::DebugReportLogger& logger_;
502 std::bitset<driver::ProcHook::EXTENSION_COUNT> enabled_extensions_;
506 const driver::DebugReportLogger& logger,
519 enabled_extensions_.set(driver::ProcHook::EXTENSION_CORE);
545 // point head of chain to the driver
546 get_instance_proc_addr_ = driver::GetInstanceProcAddr
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/
pprof.go 28 "github.com/google/pprof/driver"
33 options := &driver.Options{
37 if err := driver.PProf(options); err != nil {
144 // objTool implements driver.ObjTool using Go libraries
151 func (*objTool) Open(name string, start, limit, offset uint64) (driver.ObjFile, error) {
173 func (t *objTool) Disasm(file string, start, end uint64) ([]driver.Inst, error) {
178 var asm []driver.Inst
180 asm = append(asm, driver.Inst{Addr: pc, File: file, Line: line, Text: text})
213 // file implements driver.ObjFile using Go libraries
241 func (f *file) SourceLine(addr uint64) ([]driver.Frame, error)
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/driver/
types.go 5 package driver package
17 // driver package to provide consistent implementations of conversions
26 // driver Value types.
28 // * by the sql package, for converting from a driver's Value type
31 // ConvertValue converts a value to a driver Value.
38 // themselves to a driver Value.
40 // Value returns a driver Value.
69 return nil, fmt.Errorf("sql/driver: couldn't convert %q into type bool", s)
75 return nil, fmt.Errorf("sql/driver: couldn't convert %q into type bool", s)
87 return nil, fmt.Errorf("sql/driver: couldn't convert %d into type bool", iv
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/
pprof.go 28 "github.com/google/pprof/driver"
33 options := &driver.Options{
37 if err := driver.PProf(options); err != nil {
144 // objTool implements driver.ObjTool using Go libraries
151 func (*objTool) Open(name string, start, limit, offset uint64) (driver.ObjFile, error) {
173 func (t *objTool) Disasm(file string, start, end uint64) ([]driver.Inst, error) {
178 var asm []driver.Inst
180 asm = append(asm, driver.Inst{Addr: pc, File: file, Line: line, Text: text})
213 // file implements driver.ObjFile using Go libraries
241 func (f *file) SourceLine(addr uint64) ([]driver.Frame, error)
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/driver/
types.go 5 package driver package
17 // driver package to provide consistent implementations of conversions
26 // driver Value types.
28 // * by the sql package, for converting from a driver's Value type
31 // ConvertValue converts a value to a driver Value.
38 // themselves to a driver Value.
40 // Value returns a driver Value.
69 return nil, fmt.Errorf("sql/driver: couldn't convert %q into type bool", s)
75 return nil, fmt.Errorf("sql/driver: couldn't convert %q into type bool", s)
87 return nil, fmt.Errorf("sql/driver: couldn't convert %d into type bool", iv
    [all...]
  /art/compiler/driver/
compiled_method_storage_test.cc 31 CompilerDriver driver(&compiler_options,
42 CompiledMethodStorage* storage = driver.GetCompiledMethodStorage();
91 &driver, InstructionSet::kNone, c, 0u, 0u, 0u, s, v, f, p));
125 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(&driver, method);
  /art/compiler/optimizing/
builder.h 25 #include "driver/compiler_driver.h"
41 CompilerDriver* driver,
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/
TechNotes.txt 3 # Technical notes for the virtio-net driver.
24 The following documents have been perused while writing the driver and this
28 - Driver Writer's Guide for UEFI 2.3.1, 03/08/2012, Version 1.01;
42 UEFI driver structure
45 A driver instance, belonging to a given virtio-net device, can be in one of
81 a driver instance actually doesn't exist at that point. The transition
82 functions out of and into that state implement the Driver Binding Protocol.
84 The lower three states characterize an existent driver instance and are all
93 Driver instance states (Simple Network Protocol)
104 Protocol for flexibility that the virtio-net driver doesn't exploit.
    [all...]
  /external/clang/include/clang/Driver/
Types.h 1 //===--- Types.h - Input & Temporary Driver Types ---------------*- C++ -*-===//
13 #include "clang/Driver/Phases.h"
17 namespace driver { namespace in namespace:clang
22 #include "clang/Driver/Types.def"
94 } // end namespace driver
  /external/droiddriver/src/io/appium/droiddriver/scroll/
AccessibilityEventScrollStepStrategy.java 111 public boolean scroll(DroidDriver driver, Finder containerFinder,
118 AccessibilityEvent event = doScrollAndReturnEvent(driver.on(containerFinder), direction);
163 public void beginScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder,
169 public void endScrolling(DroidDriver driver, Finder containerFinder, Finder itemFinder,
  /external/linux-kselftest/tools/testing/selftests/media_tests/
media_device_open.c 14 * run when hardware and driver that makes use Media
23 * Run this test is a loop and run bind/unbind on the driver.
79 printf("Media device model %s driver %s\n",
80 mdi.model, mdi.driver);
  /external/mesa3d/src/glx/
dri2_priv.h 53 void *driver; member in struct:dri2_screen
  /external/mesa3d/src/mesa/main/
syncobj.h 42 _mesa_init_sync_object_functions(struct dd_function_table *driver);
  /external/syslinux/gpxe/src/include/gpxe/
isa.h 17 /** Driver for this device */
18 struct isa_driver *driver; member in struct:isa_device
19 /** Driver-private data
25 /** Driver name */
35 /** An ISA driver */
63 /** ISA driver table */
66 /** Declare an ISA driver */
70 * Set ISA driver-private data
80 * Get ISA driver-private data
mca.h 2 * MCA bus driver code
45 /** Driver for this device */
46 struct mca_driver *driver; member in struct:mca_device
47 /** Driver-private data
53 /** Driver name */
59 /** An MCA driver */
82 /** MCA driver table */
85 /** Declare an MCA driver */
89 * Set MCA driver-private data
99 * Get MCA driver-private dat
    [all...]
  /external/tensorflow/tensorflow/tools/ci_build/builds/
print_build_info.sh 71 if [[ -f /proc/driver/nvidia/version ]]; then
72 NVIDIA_DRIVER_VER=$(head -1 /proc/driver/nvidia/version | awk '{print $(NF-6)}')
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCursor.java 83 public SQLiteCursor(SQLiteDatabase db, SQLiteCursorDriver driver,
85 this(driver, editTable, query);
98 public SQLiteCursor(SQLiteCursorDriver driver, String editTable, SQLiteQuery query) {
107 mDriver = driver;
  /frameworks/base/libs/hwui/debug/
GlesDriver.h 50 static std::unique_ptr<GlesDriver> replace(std::unique_ptr<GlesDriver>&& driver);
  /system/tools/hidl/test/
run_all_host_tests.sh 11 android.hardware.tests.foo@1.0-vts.driver \
  /cts/hostsidetests/security/src/android/security/cts/
SecurityTestCase.java 70 * Check if a driver is present on a machine
72 public boolean containsDriver(ITestDevice mDevice, String driver) throws Exception {
73 String result = mDevice.executeShellCommand("ls -Zl " + driver);
  /external/ImageMagick/config/
tap-driver.sh 32 me=tap-driver.sh
51 tap-driver.sh --test-name=NAME --log-file=PATH --trs-file=PATH

Completed in 1398 milliseconds

1 2 3 4 5 6 7 8 91011>>