/linux-4.4.14/scripts/gdb/linux/ |
D | tasks.py | 58 def invoke(self, pid): member in LxTaskByPidFunc 75 def invoke(self, arg, from_tty): member in LxPs 112 def invoke(self, task): member in LxThreadInfoFunc
|
D | modules.py | 50 def invoke(self, mod_name): member in LxModule 70 def invoke(self, arg, from_tty): member in LxLsmod
|
D | cpus.py | 113 def invoke(self, var_name, cpu=-1): member in PerCpu 130 def invoke(self, cpu=-1): member in LxCurrentFunc
|
D | dmesg.py | 25 def invoke(self, arg, from_tty): member in LxDmesg
|
D | lists.py | 86 def invoke(self, arg, from_tty): member in LxListChk
|
D | utils.py | 65 def invoke(self, ptr, typename, elementname): member in ContainerOf
|
D | symbols.py | 155 def invoke(self, arg, from_tty): member in LxSymbols
|
/linux-4.4.14/Documentation/RCU/ |
D | UP.txt | 5 may immediately invoke its function. The basis of this misconception 23 Now, if call_rcu() were to directly invoke its arguments, then upon return 35 by having call_rcu() directly invoke its arguments only if it was called 44 Therefore, in this case, allowing call_rcu() to immediately invoke 49 Quick Quiz #1: why is it -not- legal to invoke synchronize_rcu() in 57 call_rcu() were to directly invoke the callback, the result would 84 Permitting call_rcu() to immediately invoke its arguments breaks RCU, 86 infrastructure -must- respect grace periods, and -must- invoke callbacks 99 Why is it -not- legal to invoke synchronize_rcu() in this case?
|
D | rcubarrier.txt | 185 the timers, and only then invoke rcu_barrier() to wait for any remaining 188 Of course, if you module uses call_rcu_bh(), you will need to invoke 190 call_rcu_sched(), you will need to invoke rcu_barrier_sched() before 192 call_rcu_sched(), then you will need to invoke each of rcu_barrier(), 221 6 and 7. Line 8 causes each CPU to invoke rcu_barrier_func(), which is 284 in response, so that Nikita could invoke it during the
|
D | lockdep-splat.txt | 73 which would permit us to invoke rcu_dereference_protected as follows: 109 Because it is legal to invoke rcu_access_pointer() without protection,
|
D | NMI-RCU.txt | 98 invoke nmi_enter() and nmi_exit() on NMI entry and exit, respectively.
|
D | checklist.txt | 278 e. Periodically invoke synchronize_rcu(), permitting a limited 403 destructive operation, and -only- -then- invoke call_rcu(),
|
D | trace.txt | 138 to invoke). 167 of RCU callbacks is ready to invoke, then the remainder will
|
D | torture.txt | 55 irqreader Says to invoke RCU readers from irq level. This is currently
|
D | whatisRCU.txt | 665 So, suppose that we remove a data item from its structure and then invoke
|
/linux-4.4.14/arch/mips/fw/arc/ |
D | salone.c | 18 return ARC_CALL5(invoke, ExecAddr, StackAddr, Argc, Argv, Envp); in ArcInvoke()
|
/linux-4.4.14/arch/arm/firmware/ |
D | Kconfig | 21 This option allows the kernel to invoke the secure monitor whenever
|
/linux-4.4.14/drivers/android/ |
D | Kconfig | 19 Android process, using Binder to identify, invoke and pass arguments
|
/linux-4.4.14/drivers/net/wireless/prism54/ |
D | isl_ioctl.c | 1061 int authen = DOT11_AUTH_OS, invoke = 0, exunencrypt = 0; in prism54_set_encode() local 1136 invoke = 1; in prism54_set_encode() 1140 invoke = 1; in prism54_set_encode() 1148 mgt_set_request(priv, DOT11_OID_PRIVACYINVOKED, 0, &invoke); in prism54_set_encode() 1163 u32 authen = 0, invoke = 0, exunencrypt = 0; in prism54_get_encode() local 1171 invoke = r.u; in prism54_get_encode() 1175 if (invoke && (authen == DOT11_AUTH_BOTH) && exunencrypt) in prism54_get_encode() 1178 if (invoke) in prism54_get_encode() 1547 int authen = DOT11_AUTH_OS, invoke = 0, exunencrypt = 0; in prism54_set_encodeext() local 1622 invoke = 1; in prism54_set_encodeext() [all …]
|
/linux-4.4.14/Documentation/usb/ |
D | hotplug.txt | 22 (triggering some monitoring daemon to invoke a helper program) or 38 which the kernel may invoke at various times. 78 modules, and can invoke driver-specific setup scripts. The newest ones
|
/linux-4.4.14/Documentation/scsi/ |
D | scsi_eh.txt | 327 3. If !list_empty(&eh_work_q), invoke scsi_eh_abort_cmds(). 351 4. If !list_empty(&eh_work_q), invoke scsi_eh_ready_devs() 381 2. If !list_empty(&eh_work_q), invoke scsi_eh_bus_device_reset(). 391 3. If !list_empty(&eh_work_q), invoke scsi_eh_bus_reset() 400 4. If !list_empty(&eh_work_q), invoke scsi_eh_host_reset() 408 5. If !list_empty(&eh_work_q), invoke scsi_eh_offline_sdevs()
|
D | scsi_mid_low_api.txt | 89 supplied by the mid level. The mid level will then invoke these 161 If the LLD wants to adjust the default queue settings, it can invoke 750 queuecommand - queue scsi command, invoke 'done' on completion 1005 * queuecommand - queue scsi command, invoke scp->scsi_done on completion 1277 0). The LLD may invoke 'done' prior to queuecommand()
|
D | BusLogic.txt | 307 To enable this backward compatibility option, invoke the AutoSCSI utility via 333 by increasing bus number and device number. To disable this feature, invoke
|
/linux-4.4.14/Documentation/power/ |
D | runtime_pm.txt | 62 callback, the PM core will invoke the corresponding driver callback stored in 694 - invoke the ->runtime_suspend() callback provided by the driver of this 698 - invoke the ->runtime_resume() callback provided by the driver of this 702 - if the device has not been suspended at run time, invoke the ->suspend() 707 - if pm_runtime_suspended(dev) returns "false", invoke the ->suspend_noirq() 712 - invoke the ->resume() callback provided by the driver of this device and, 716 - invoke the ->resume_noirq() callback provided by the driver of this device 719 - if the device has not been suspended at run time, invoke the ->freeze() 724 - if pm_runtime_suspended(dev) returns "false", invoke the ->freeze_noirq() 729 - if the device has not been suspended at run time, invoke the ->thaw() [all …]
|
D | basic-pm-debugging.txt | 82 invoke the global control methods (eg. ACPI global control methods) used to 84 configurable number of seconds and invoke the platform (eg. ACPI) global
|
D | devices.txt | 303 The PM domain, type, class and bus callbacks may in turn invoke device- or
|
/linux-4.4.14/Documentation/x86/x86_64/ |
D | uefi.txt | 32 - Boot to EFI shell and invoke elilo choosing the kernel image built
|
/linux-4.4.14/Documentation/networking/ |
D | netlink_mmap.txt | 157 for user-space. Approriate action is to invoke poll() 166 Appropriate action is to invoke poll() to wait for 186 to invoke recvmsg() to receive the message and release
|
D | netdevices.txt | 102 driver's ndo_stop method will invoke napi_disable() on
|
D | dns_resolver.txt | 83 where <type> optionally specifies the particular upcall program to invoke,
|
D | phy.txt | 176 Simple read/write primitives. They invoke the bus's read/write function 319 When a match is found, the PHY layer will invoke the run function associated
|
D | ppp_generic.txt | 104 remote system to invoke PPP service there. We refer to this process
|
D | rxrpc.txt | 316 calls, to invoke certain actions and to report certain conditions. These are:
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | operations.txt | 199 When used in asynchronous mode, the worker thread pool will invoke the 210 The caller holds a reference on the operation, and will invoke
|
D | backend-api.txt | 341 caller. The caller will invoke the put_object() method as appropriate. 716 pool. One of the threads in the pool will invoke the retrieval record's
|
/linux-4.4.14/drivers/mailbox/ |
D | Kconfig | 70 An implementation of the BCM2385 Mailbox. It is used to invoke
|
/linux-4.4.14/arch/x86/boot/ |
D | header.S | 81 # invoke the BIOS reset code...
|
/linux-4.4.14/Documentation/networking/dsa/ |
D | dsa.txt | 124 -> invoke handler for ETH_P_XDSA, calls dsa_switch_rcv() 128 -> invoke switch tag specific protocol handler in 134 -> invoke eth_type_trans() with the DSA slave network device 160 invoke a specific transmit routine which takes care of adding the relevant 457 Ethernet) settings, can optionally invoke the PHY library to enable EEE at the
|
/linux-4.4.14/arch/mips/include/asm/ |
D | sgiarcs.h | 189 LONG invoke; /* Invoke a standalong image. */ member
|
/linux-4.4.14/tools/build/Documentation/ |
D | Build.txt | 112 to make it easier to invoke build like:
|
/linux-4.4.14/Documentation/cgroups/ |
D | freezer-subsystem.txt | 13 walk /proc or invoke a kernel interface to gather information about the
|
/linux-4.4.14/Documentation/i2c/ |
D | fault-codes | 43 Also returned when trying to invoke an I2C operation in an
|
/linux-4.4.14/Documentation/ |
D | unshare.txt | 244 * For each context flag, invoke the corresponding unshare_* 258 required for that structure. If it is, invoke the corresponding
|
D | pnp.txt | 32 this will invoke the automatic resource config system to activate the device
|
D | phy.txt | 133 So pm_runtime_get_sync of the phy_device created by this subsystem will invoke
|
D | binfmt_misc.txt | 4 This Kernel feature allows you to invoke almost (for restrictions see below)
|
D | adding-syscalls.txt | 395 that save/restore additional registers and invoke the real system call entry 415 table will also need to invoke a stub that calls on to the compat_sys_ 453 the test will need to invoke it using syscall(); also, if the system call
|
D | hwspinlock.txt | 264 * @dev: underlying device, will be used to invoke runtime PM api
|
D | initrd.txt | 298 boot time, but the system loaded from initrd can invoke a user-friendly
|
D | cpu-hotplug.txt | 427 event can be used to invoke an agent script to perform the configuration task.
|
D | cachetlb.txt | 28 invoke one of the following flush methods _after_ the page table
|
D | atomic_ops.txt | 83 or processor, and explicitly invoke the appropriate compiler and/or memory
|
D | DMA-API-HOWTO.txt | 555 will invoke the generic mapping error check interface. Doing so will ensure
|
/linux-4.4.14/arch/arc/kernel/ |
D | entry-compact.S | 197 ; setup params for Linux common ISR and invoke it
|
/linux-4.4.14/Documentation/powerpc/ |
D | pmu-ebb.txt | 126 are live (possibly) and so must be saved somehow before the handler can invoke
|
/linux-4.4.14/arch/frv/kernel/ |
D | head.S | 522 # invoke the debugging stub if present
|
/linux-4.4.14/Documentation/filesystems/ |
D | exofs.txt | 56 5. At first run you will need to invoke the mkfs.exofs application
|
D | nilfs2.txt | 154 This will also invoke the cleaner through the mount helper program
|
D | seq_file.txt | 319 accordingly. Your start() and next() functions need only invoke the
|
D | relay.txt | 367 buffer will again invoke the subbuf_start() callback with the same
|
/linux-4.4.14/Documentation/frv/ |
D | kernel-ABI.txt | 59 Exceptions will invoke the appropriate normal kernel mode
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | OSS-Emulation.txt | 179 specifies to invoke the write transfer only when the whole fragment is
|
D | ALSA-Configuration.txt | 2048 firmware via vxloader utility in alsa-tools package. To invoke
|
/linux-4.4.14/Documentation/arm64/ |
D | arm-acpi.txt | 220 invoke the method and not concern itself with what the method needs to do 311 in ACPI, _PS0 is the method to invoke to turn a device full on, and _PS3 is for
|
/linux-4.4.14/Documentation/block/ |
D | biodoc.txt | 295 invoke a lower level driver specific interface with the request as a 348 block layer would invoke to pre-build device commands for a given request, 499 invoke underlying driver entry points passing in a specially constructed 1086 to invoke its own partition sector offset calculations since all bios
|
/linux-4.4.14/Documentation/nfc/ |
D | nfc-hci.txt | 221 MSGTXWQ context will then be scheduled and invoke nfc_hci_msg_tx_work().
|
/linux-4.4.14/Documentation/vm/ |
D | cleancache.txt | 236 - A clustered FS should invoke the "shared_init_fs" cleancache
|
D | transhuge.txt | 131 invoke defrag algorithms synchronously during the page faults, it
|
/linux-4.4.14/Documentation/rapidio/ |
D | rapidio.txt | 190 This requirement is cased by the fact that enumeration/discovery methods invoke
|
/linux-4.4.14/arch/sh/ |
D | Kconfig | 638 Jump between original kernel and kexeced kernel and invoke
|
/linux-4.4.14/scripts/genksyms/ |
D | parse.tab.c_shipped | 343 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number 1256 for details. YYERROR is fine as it does not invoke this
|
/linux-4.4.14/Documentation/trace/ |
D | events.txt | 312 Trace events can be made to conditionally invoke trigger 'commands'
|
/linux-4.4.14/init/ |
D | Kconfig | 712 invoke callbacks, where the "N" is the CPU being offloaded, 739 invoke their own RCU callbacks in softirq context. 752 All other CPUs will invoke their own RCU callbacks in softirq
|
/linux-4.4.14/scripts/kconfig/ |
D | zconf.tab.c_shipped | 334 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number 1219 for details. YYERROR is fine as it does not invoke this
|
/linux-4.4.14/Documentation/kbuild/ |
D | makefiles.txt | 264 invoke make recursively in subdirectories, provided you let it know of 1045 "$(Q)$(MAKE) $(build)=<dir>" is the recommended way to invoke
|
/linux-4.4.14/net/sched/ |
D | Kconfig | 641 Say Y here to be able to invoke iptables targets after successful
|
/linux-4.4.14/Documentation/spi/ |
D | spi-summary | 512 call spi_setup(spi) to invoke this routine. It may sleep.
|
/linux-4.4.14/scripts/dtc/ |
D | dtc-parser.tab.c_shipped | 340 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | README | 112 umount.cifs is placed in /sbin, umount can invoke the cifs umount helper
|
/linux-4.4.14/Documentation/video4linux/ |
D | v4l2-framework.txt | 1156 clock operations that will be called when clock users invoke respective API
|
/linux-4.4.14/arch/arm/ |
D | Kconfig | 1777 between threads sharing the same address space if they invoke
|
/linux-4.4.14/Documentation/security/ |
D | keys.txt | 1344 invoke this function rather than upcalling to /sbin/request-key to operate
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | aic79xx.seq | 501 * interrupt context but not invoke that handler
|
/linux-4.4.14/arch/x86/ |
D | Kconfig | 1809 Jump between original kernel and kexeced kernel and invoke
|