OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:driver_path
(Results
1 - 8
of
8
) sorted by null
/external/autotest/server/site_tests/kernel_ExternalUsbPeripheralsDetectionTest/
kernel_ExternalUsbPeripheralsDetectionTest.py
153
driver_path
= os.path.join(vendor_ids[vid],
155
if self._exists_on(
driver_path
):
159
%
driver_path
, ignore_status=True)
163
raise error.TestFail('Drivers are not loaded - %s',
driver_path
)
/hardware/intel/common/libva/va/
va.c
215
char *
driver_path
= (char *) malloc( strlen(driver_dir) +
local
218
if (!
driver_path
) {
225
strncpy(
driver_path
, driver_dir, strlen(driver_dir) + 1);
226
strncat(
driver_path
, "/", strlen("/") );
227
strncat(
driver_path
, driver_name, strlen(driver_name) );
228
strncat(
driver_path
, DRIVER_EXTENSION, strlen(DRIVER_EXTENSION) );
230
va_infoMessage("Trying to open %s\n",
driver_path
);
232
handle = dlopen(
driver_path
, RTLD_NOW | RTLD_GLOBAL | RTLD_NODELETE );
234
handle = dlopen(
driver_path
, RTLD_NOW| RTLD_GLOBAL);
238
if (0 == access(
driver_path
, F_OK)
[
all
...]
/external/autotest/server/site_tests/kernel_ExternalUsbPeripheralsDetectionStress/
kernel_ExternalUsbPeripheralsDetectionStress.py
91
driver_path
= os.path.join(devicePath,
93
if self._exists_on(
driver_path
):
97
%
driver_path
, ignore_status=True)
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
win_platform_backend.py
63
driver_path
= os.path.join(executable_dir, driver_file_name)
66
if not (os.path.exists(dll_path) and os.path.exists(
driver_path
)):
88
if not os.path.exists(
driver_path
):
/external/autotest/client/cros/multimedia/
usb_facade_native.py
396
driver_path
= self._USB_BOUND_DRIVERS_FILE_PATH % self._device_bus_id
397
return os.path.exists(
driver_path
)
/external/autotest/client/bin/net/
net_utils.py
181
driver_path
= os.readlink('/sys/class/net/%s/device/driver' %
183
return os.path.basename(
driver_path
)
/system/connectivity/shill/
device_info.cc
315
FilePath
driver_path
;
local
316
if (!GetDeviceInfoSymbolicLink(iface_name, kInterfaceDriver, &
driver_path
)) {
344
string driver_name(
driver_path
.BaseName().value());
[
all
...]
/external/libpcap/
pcap-bpf.c
93
#define
DRIVER_PATH
"/usr/lib/drivers"
1234
sprintf(cfg_ld.path, "%s/%s",
DRIVER_PATH
, BPF_NAME);
[
all
...]
Completed in 882 milliseconds