Searched refs:exists (Results 51 - 75 of 96) sorted by last modified time

1234

/linux-master/drivers/input/serio/
H A Di8042.c156 bool exists; member in struct:i8042_port
460 port->exists = true;
476 port->exists = false;
594 serio = port->exists ? port->serio : NULL;
/linux-master/tools/power/x86/amd_pstate_tracer/
H A Damd_pstate_trace.py68 if os.path.exists(file_name):
85 if os.path.exists(file_name):
100 if os.path.exists(file_name):
178 if os.path.exists('cpu.csv'):
302 if not os.path.exists('results'):
307 if os.path.exists(test_name):
308 print('The test name directory already exists. Please provide a unique test name. Test re-run not supported, yet.')
/linux-master/kernel/
H A Dtaskstats.c326 goto exists;
330 exists:
/linux-master/drivers/xen/xenbus/
H A Dxenbus_probe.c625 int exists, rootlen; local
633 exists = xenbus_exists(XBT_NIL, node, "");
634 if (!exists) {
/linux-master/drivers/gpu/drm/ci/xfails/
H A Dupdate-xfails.py45 if os.path.exists(file_path):
/linux-master/tools/power/x86/intel_pstate_tracer/
H A Dintel_pstate_tracer.py104 if os.path.exists(file_name):
125 if os.path.exists(file_name):
144 if os.path.exists(file_name):
159 if os.path.exists(file_name):
174 if os.path.exists('cpu.csv'):
348 if os.path.exists('cpu.csv'):
365 if os.path.exists('cpu.csv'):
549 if not os.path.exists('results'):
555 if os.path.exists(testname):
556 print('The test name directory already exists
[all...]
/linux-master/drivers/net/mctp/
H A Dmctp-i3c.c658 bool exists = false; local
663 exists = true;
668 if (!exists)
/linux-master/drivers/net/ethernet/qlogic/qed/
H A Dqed_debug.c322 bool exists[MAX_CHIP_IDS]; member in struct:storm_mode_defs
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dl2t.c312 goto exists;
337 exists:
/linux-master/drivers/net/ethernet/netronome/nfp/flower/
H A Dcmsg.c101 int nfp_flower_cmsg_portreify(struct nfp_repr *repr, bool exists) argument
115 msg->info = cpu_to_be16(exists);
190 bool exists; local
195 exists = !!nfp_app_dev_get(app, be32_to_cpu(msg->portnum), NULL);
197 if (!exists) {
H A Dmain.c272 bool exists)
289 err = nfp_flower_cmsg_portreify(repr, exists);
271 nfp_flower_reprs_reify(struct nfp_app *app, enum nfp_repr_type type, bool exists) argument
/linux-master/scripts/kconfig/
H A Dqconf-cfg.sh18 if ${HOSTPKG_CONFIG} --exists $PKG6; then
27 if ${HOSTPKG_CONFIG} --exists $PKG5; then
H A Dnconf-cfg.sh11 if ${HOSTPKG_CONFIG} --exists $PKG; then
17 if ${HOSTPKG_CONFIG} --exists $PKG2; then
H A Dmconf-cfg.sh11 if ${HOSTPKG_CONFIG} --exists $PKG; then
17 if ${HOSTPKG_CONFIG} --exists ${PKG2}; then
H A Dgconf-cfg.sh16 if ! ${HOSTPKG_CONFIG} --exists $PKG; then
/linux-master/tools/crypto/ccp/
H A Ddbc_cli.py69 if not os.path.exists(args.device):
72 if not os.path.exists(args.signature):
81 if not os.path.exists(args.uid):
/linux-master/tools/testing/kunit/
H A Dkunit.py442 if not os.path.exists(cli_args.build_dir):
466 not os.path.exists(cli_args.build_dir)):
/linux-master/arch/s390/pci/
H A Dpci_clp.c617 int exists; local
625 exists = test_bit_inv(req->lps, &ilp);
626 return put_user(exists, (int __user *) uptr);
/linux-master/tools/kvm/kvm_stat/
H A Dkvm_stat859 if not os.path.exists(os.path.join(PATH_DEBUGFS_KVM, path)):
1804 if not os.path.exists(PATH_DEBUGFS_TRACING) and (options.tracepoints or
1840 if not os.path.exists(PATH_DEBUGFS_KVM):
/linux-master/drivers/misc/vmw_vmci/
H A Dvmci_context.c366 * Verifies whether a context with the specified context ID exists.
373 bool exists = false; local
379 exists = true;
385 return exists;
603 bool exists = false; local
635 exists = true;
640 if (exists) {
/linux-master/drivers/watchdog/
H A Dpcwd_usb.c141 /* Wether or not the device exists */
142 int exists; member in struct:usb_pcwd_private
215 if ((!usb_pcwd) || (!usb_pcwd->exists))
686 /* The device exists and can be communicated with */
687 usb_pcwd->exists = 1;
788 usb_pcwd->exists = 0;
/linux-master/scripts/
H A Dcheckkconfigsymbols.py390 if not os.path.exists(sfile):
438 if not os.path.exists(kfile):
/linux-master/drivers/input/joystick/
H A Dtmdc.c120 unsigned char exists; member in struct:tmdc
229 if ((r = tmdc_read_packet(tmdc->gameport, data)) != tmdc->exists)
233 if (r & (1 << i) & tmdc->exists) {
362 if (!(tmdc->exists = tmdc_read_packet(gameport, data))) {
371 if (tmdc->exists & (1 << i)) {
H A Dcobra.c33 unsigned char exists; member in struct:cobra
100 if ((r = cobra_read_packet(gameport, data)) != cobra->exists) {
106 if (cobra->exists & r & (1 << i)) {
156 cobra->exists = cobra_read_packet(gameport, data);
159 if ((cobra->exists >> i) & data[i] & 1) {
162 cobra->exists &= ~(1 << i);
165 if (!cobra->exists) {
174 if (~(cobra->exists >> i) & 1)
228 if ((cobra->exists >> i) & 1)
/linux-master/drivers/firmware/
H A Ddmi_scan.c1028 bool exists; local
1033 exists = s;
1034 if (!exists)
1075 return exists;
1088 bool exists; local
1091 exists = dmi_get_date(DMI_BIOS_DATE, &year, NULL, NULL);
1092 if (!exists)
1127 * dmi_match - compare a string to the dmi field (if exists)
1180 * given DMI handle, or 0x0 if no such DMI handle exists.

Completed in 288 milliseconds

1234