| /kernel/linux/linux-5.10/drivers/extcon/ |
| D | extcon-max14577.c | 188 * @attached: the state of cable (true:attached, false:detached) 237 ctrl1, ctrl2, attached ? "attached" : "detached"); in max14577_muic_set_path() 248 * This function check the cable state either attached or detached, 272 * detached. in max14577_muic_get_cable_type() 305 * charger cable is detached. in max14577_muic_get_cable_type() 328 attached ? "attached" : "detached", cable_type); in max14577_muic_jig_handler() 342 attached ? "attached" : "detached"); in max14577_muic_jig_handler() 361 /* Check accessory state which is either detached or attached */ in max14577_muic_adc_handler() 367 attached ? "attached" : "detached", cable_type, in max14577_muic_adc_handler() 410 * proper operation when this accessory is attached/detached. in max14577_muic_adc_handler() [all …]
|
| D | extcon-max8997.c | 188 * @attached: the state of cable (true:attached, false:detached) 227 ctrl1, ctrl2, attached ? "attached" : "detached"); in max8997_muic_set_path() 238 * This function check the cable state either attached or detached, 262 * detached. in max8997_muic_get_cable_type() 294 * charger cable is detached. in max8997_muic_get_cable_type() 331 attached ? "attached" : "detached"); in max8997_muic_handle_usb() 356 attached ? "attached" : "detached"); in max8997_muic_handle_dock() 386 /* Check cable state which is either detached or attached */ in max8997_muic_adc_handler() 442 * proper operation when this cable is attached/detached. in max8997_muic_adc_handler() 446 attached ? "attached" : "detached", cable_type); in max8997_muic_adc_handler() [all …]
|
| D | extcon-max77693.c | 250 * @attached: the state of cable (true:attached, false:detached) 290 ctrl1, ctrl2, attached ? "attached" : "detached"); in max77693_muic_set_path() 301 * This function check the cable state either attached or detached, 330 * detached. in max77693_muic_get_cable_type() 354 * is detached. in max77693_muic_get_cable_type() 409 * charger cable is detached. in max77693_muic_get_cable_type() 459 attached ? "attached" : "detached", cable_type); in max77693_muic_dock_handler() 464 * Check power cable whether attached or detached state. in max77693_muic_dock_handler() 516 attached ? "attached" : "detached"); in max77693_muic_dock_handler() 610 attached ? "attached" : "detached"); in max77693_muic_adc_ground_handler() [all …]
|
| D | extcon-max77843.c | 241 ctrl1, ctrl2, attached ? "attached" : "detached"); in max77843_muic_set_path() 377 attached ? "attached" : "detached", gnd_cable_type); in max77843_muic_adc_gnd_handler() 403 attached ? "attached" : "detached", gnd_cable_type); in max77843_muic_adc_gnd_handler() 417 attached ? "attached" : "detached", cable_type); in max77843_muic_jig_handler() 446 attached ? "attached" : "detached"); in max77843_muic_dock_handler() 470 attached ? "attached" : "detached", cable_type, in max77843_muic_adc_handler() 520 attached ? "attached" : "detached", cable_type); in max77843_muic_adc_handler() 525 attached ? "attached" : "detached", cable_type); in max77843_muic_adc_handler() 542 attached ? "attached" : "detached", in max77843_muic_chg_handler() 617 attached ? "attached" : "detached", chg_type); in max77843_muic_chg_handler()
|
| D | extcon-max3355.c | 36 * ID = 1 means USB HOST cable detached. in max3355_id_irq() 45 * As we don't have event for USB peripheral cable detached, in max3355_id_irq()
|
| D | extcon-palmas.c | 63 dev_dbg(palmas_usb->dev, "USB cable is detached\n"); in palmas_vbus_irq_handler() 99 dev_dbg(palmas_usb->dev, "USB-HOST cable is detached\n"); in palmas_id_irq_handler() 104 dev_dbg(palmas_usb->dev, "USB-HOST cable is detached\n"); in palmas_id_irq_handler() 130 dev_dbg(palmas_usb->dev, "USB-HOST cable is detached\n"); in palmas_gpio_id_detect()
|
| /kernel/liteos_a/compat/posix/src/ |
| D | pthread.c | 294 * If we are already detached, go to EXITED state, otherwise in pthread_exit() 413 * Set the detachstate of the thread to "detached". The thread then does not 421 _pthread_data *detached = NULL; in pthread_detach() local 426 detached = pthread_get_data(thread); in pthread_detach() 427 if (detached == NULL) { in pthread_detach() 429 } else if (detached->state == PTHREAD_STATE_DETACHED) { in pthread_detach() 430 ret = EINVAL; /* Already detached! */ in pthread_detach() 431 } else if (detached->state == PTHREAD_STATE_JOIN) { in pthread_detach() 432 detached->state = PTHREAD_STATE_EXITED; in pthread_detach() 435 /* Set state to detached and kick any joinees to make them return. */ in pthread_detach() [all …]
|
| /kernel/linux/linux-5.10/include/linux/power/ |
| D | charger-manager.h | 47 * But if charger cable is detached, disable charger. 49 * (External Connector) when charger cable is attached/detached. 52 * false: the charger cable is detached 92 * in the array of charger cables is attached/detached.
|
| /kernel/liteos_a/testsuites/kernel/sample/posix/pthread/ |
| D | It_posix_pthread.c | 62 CASE_POS(1, 0, 0, 0, 0, 0, 0, 0, "detached"), 76 CASE_POS(1, 0, 0, 0, 0, 1, 0, 0, "Detached, Alternative stack"), 77 CASE_POS(1, 0, 0, 0, 0, 0, 1, 1, "Detached, Min stack size, no guard"), 78 CASE_UNK(1, 0, 0, 0, 0, 0, 2, 1, "Detached, Min stack size, 1p guard"), 105 if (g_scenarii[i].detached == 1) { in ScenarInit()
|
| D | It_posix_pthread.h | 119 /* 0, joinable; 1, detached */ 120 INT32 detached; member 171 * the detached threads execution
|
| /kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/ |
| D | perf_branches.c | 65 bool detached = false; in test_perf_branches_common() local 91 detached = true; in test_perf_branches_common() 97 if (!detached) in test_perf_branches_common()
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | clockchips.h | 25 * DETACHED: Device is not used by clockevents core. Initial state or can be 29 * reached from DETACHED or SHUTDOWN. 31 * from DETACHED or SHUTDOWN.
|
| /kernel/linux/linux-5.10/tools/usb/usbip/src/ |
| D | usbip_detach.c | 65 info("Port %d is already detached!\n", idev->port); in detach_port() 88 info("Port %d is now detached!\n", portnum); in detach_port()
|
| /kernel/linux/linux-5.10/fs/btrfs/ |
| D | backref.h | 173 /* Link to pending, changed or detached list */ 203 unsigned int detached:1; member 247 /* List of detached backref node. */ 248 struct list_head detached; member
|
| /kernel/linux/linux-5.10/Documentation/ABI/testing/ |
| D | sysfs-class-extcon | 52 cables attached and HDMI and EAR_JACK cables detached. 81 device. The state value is either 0 (detached) or 1
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/msm/disp/dpu1/ |
| D | dpu_crtc.h | 37 * @DETACHED: all the context banks are detached. 43 DETACHED, enumerator
|
| /kernel/linux/linux-5.10/drivers/of/ |
| D | of_private.h | 107 bool detached); 114 * own the devtree lock or work on detached trees only.
|
| /kernel/liteos_a/testsuites/unittest/libc/posix/pthread/full/ |
| D | It_posix_pthread_127.cpp | 52 /* Signal we're done (especially in case of a detached thread) */ in pthread_f01() 123 if (g_scenarii[g_testCount].detached == 0) { in Testcase()
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/extcon/ |
| D | extcon-sm5502.txt | 6 attached or detached and button is pressed or released. It is interfaced to
|
| D | extcon-usbc-cros-ec.yaml | 16 or USB devices when said accessories are attached or detached.
|
| /kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/ |
| D | It_posix_pthread_127.c | 59 /* Signal we're done (especially in case of a detached thread) */ in PthreadF01() 130 if (g_scenarii[g_testCount].detached == 0) { in Testcase()
|
| /kernel/linux/linux-5.10/tools/usb/usbip/doc/ |
| D | usbip.8 | 11 can be listed, attached and detached.
|
| /kernel/liteos_a/testsuites/unittest/libc/posix/pthread/ |
| D | It_posix_pthread.h | 126 /* 0 => joinable; 1 => detached */ 127 INT32 detached; member 178 * the detached threads execution
|
| /kernel/linux/linux-5.10/drivers/net/ |
| D | tun.c | 156 struct tun_struct *detached; member 595 tfile->detached = tun; in tun_disable_queue() 602 struct tun_struct *tun = tfile->detached; in tun_enable_queue() 604 tfile->detached = NULL; in tun_enable_queue() 647 if (tun && !tfile->detached) { in __tun_detach() 670 } else if (tfile->detached && clean) { in __tun_detach() 760 if (rtnl_dereference(tfile->tun) && !tfile->detached) in tun_attach() 768 if (!tfile->detached && in tun_attach() 783 if (!tfile->detached && in tun_attach() 793 if (tfile->detached) { in tun_attach() [all …]
|
| /kernel/linux/linux-5.10/certs/ |
| D | system_keyring.c | 171 /* The data should be detached - so we need to supply it. */ in verify_pkcs7_message_sig() 173 pr_err("PKCS#7 signature with non-detached data\n"); in verify_pkcs7_message_sig()
|