/external/wpa_supplicant_8/src/utils/ |
D | state_machine.h | 2 * wpa_supplicant/hostapd - State machine definitions 9 * implement a state machine. In addition to including this header file, each 10 * file implementing a state machine must define STATE_MACHINE_DATA to be the 24 * SM_STATE - Declaration of a state machine function 25 * @machine: State machine name 26 * @state: State machine state 28 * This macro is used to declare a state machine function. It is used in place 32 #define SM_STATE(machine, state) \ argument 33 static void sm_ ## machine ## _ ## state ## _Enter(STATE_MACHINE_DATA *sm, \ 37 * SM_ENTRY - State machine function entry point [all …]
|
/external/elfutils/tests/ |
D | saridx.c | 40 #define MACHINE(name) [name] = #name macro 41 MACHINE (EM_NONE), 42 MACHINE (EM_M32), 43 MACHINE (EM_SPARC), 44 MACHINE (EM_386), 45 MACHINE (EM_68K), 46 MACHINE (EM_88K), 47 MACHINE (EM_860), 48 MACHINE (EM_MIPS), 49 MACHINE (EM_MIPS_RS3_LE), [all …]
|
/external/linux-tools-perf/util/ |
D | map.h | 31 struct machine; 62 struct machine *machine; member 65 /* Native host kernel uses -1 as pid index in machine */ 69 struct machine { struct 80 struct map *machine__kernel_map(struct machine *self, enum map_type type) in machine__kernel_map() argument 146 typedef void (*machine__process_t)(struct machine *self, void *data); 149 struct machine *machines__add(struct rb_root *self, pid_t pid, 151 struct machine *machines__find_host(struct rb_root *self); 152 struct machine *machines__find(struct rb_root *self, pid_t pid); 153 struct machine *machines__findnew(struct rb_root *self, pid_t pid); [all …]
|
D | map.c | 230 self->machine = NULL; in map_groups__init() 546 int machine__init(struct machine *self, const char *root_dir, pid_t pid) in machine__init() 553 self->kmaps.machine = self; in machine__init() 569 void machine__exit(struct machine *self) in machine__exit() 578 void machine__delete(struct machine *self) in machine__delete() 584 struct machine *machines__add(struct rb_root *self, pid_t pid, in machines__add() 589 struct machine *pos, *machine = malloc(sizeof(*machine)); in machines__add() local 591 if (!machine) in machines__add() 594 if (machine__init(machine, root_dir, pid) != 0) { in machines__add() 595 free(machine); in machines__add() [all …]
|
D | event.c | 226 struct machine *machine) in perf_event__synthesize_modules() argument 229 struct map_groups *kmaps = &machine->kmaps; in perf_event__synthesize_modules() 244 if (machine__is_host(machine)) in perf_event__synthesize_modules() 271 event->mmap.pid = machine->pid; in perf_event__synthesize_modules() 391 struct machine *machine, in perf_event__synthesize_kernel_mmap() argument 414 mmap_name = machine__mmap_name(machine, name_buff, sizeof(name_buff)); in perf_event__synthesize_kernel_mmap() 415 if (machine__is_host(machine)) { in perf_event__synthesize_kernel_mmap() 424 if (machine__is_default_guest(machine)) in perf_event__synthesize_kernel_mmap() 427 sprintf(path, "%s/proc/kallsyms", machine->root_dir); in perf_event__synthesize_kernel_mmap() 435 map = machine->vmlinux_maps[MAP__FUNCTION]; in perf_event__synthesize_kernel_mmap() [all …]
|
D | symbol.c | 571 struct machine *machine = kmaps->machine; in dso__split_kallsyms() local 595 machine__is_default_guest(machine)) { in dso__split_kallsyms() 613 machine->root_dir, module); in dso__split_kallsyms() 619 !machine__is_default_guest(machine)) in dso__split_kallsyms() 678 machine__is_default_guest(kmaps->machine)) { in dso__split_kallsyms() 1492 struct machine *machine; in dso__load() local 1503 if (map->groups && map->groups->machine) in dso__load() 1504 machine = map->groups->machine; in dso__load() 1506 machine = NULL; in dso__load() 1565 if (map->groups && machine) in dso__load() [all …]
|
D | symbol.h | 208 int machine__load_kallsyms(struct machine *machine, const char *filename, 210 int machine__load_vmlinux_path(struct machine *machine, enum map_type type, 215 size_t machine__fprintf_dsos_buildid(struct machine *machine, 243 struct machine *machine); 257 void machine__destroy_kernel_maps(struct machine *machine); 258 int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel); 259 int machine__create_kernel_maps(struct machine *machine); 269 size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp);
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | eap.h | 2 * EAP peer state machine functions (RFC 4137) 28 * enum eapol_bool_var - EAPOL boolean state variables for EAP state machine 30 * These variables are used in the interface between EAP peer state machine and 33 * EAP state machine to get and set the variables. 39 * EAP state machine reads and writes this value. 46 * Set to TRUE in lower layer, FALSE in EAP state machine. 53 * EAP state machine writes this value. 60 * Set to TRUE in EAP state machine, FALSE in lower layer. 67 * Set to TRUE in EAP state machine, FALSE in lower layer. 74 * Set to TRUE in lower layer, FALSE in EAP state machine. [all …]
|
D | eap_i.h | 16 /* RFC 4137 - EAP Peer state machine */ 30 * machine and methods (RFC 4137, Sect. 4.2). eapRespData will be returned as 81 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() 93 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() 102 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() 121 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() 129 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() 142 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() 159 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() 171 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() [all …]
|
D | eap.c | 8 * This file implements the Peer State Machine as defined in RFC 4137. The used 113 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init() 138 * This state initializes state machine variables when the machine is 173 * state machine uses eapNoResp first, it may end up not sending a real in SM_STATE() 204 * The state machine spends most of its time here, waiting for something to 504 * and state machine waits here until port is disabled or EAP authentication is 516 * to avoid processing the same request twice when state machine is in SM_STATE() 523 * to get EAPOL Supplicant backend state machine into SUCCESS state. In in SM_STATE() 535 * This state is entered in case of a failure and state machine waits here 545 * to avoid processing the same request twice when state machine is in SM_STATE() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-shape-complex-sea-machine.hh | 2 #line 1 "hb-ot-shape-complex-sea-machine.rl" 35 #line 36 "hb-ot-shape-complex-sea-machine.hh.tmp" 92 #line 36 "hb-ot-shape-complex-sea-machine.rl" 96 #line 67 "hb-ot-shape-complex-sea-machine.rl" 116 #line 117 "hb-ot-shape-complex-sea-machine.hh.tmp" in find_syllables() 124 #line 88 "hb-ot-shape-complex-sea-machine.rl" in find_syllables() 133 #line 134 "hb-ot-shape-complex-sea-machine.hh.tmp" in find_syllables() 147 #line 148 "hb-ot-shape-complex-sea-machine.hh.tmp" in find_syllables() 170 #line 63 "hb-ot-shape-complex-sea-machine.rl" in find_syllables() 174 #line 61 "hb-ot-shape-complex-sea-machine.rl" in find_syllables() [all …]
|
/external/webkit/Tools/android/flex-2.5.4a/ |
D | nfa.c | 40 /* add_accept - add an accepting state to a machine 66 /* copysingl - make a given number of copies of a singleton machine 73 * singl - a singleton machine 105 * all of the rules together. So we use our knowledge that the machine 131 /* dupmachine - make a duplicate of a given machine 138 * mach - machine to be duplicated 173 flexfatal( _( "empty machine in dupmachine()" ) ); 188 * An accepting number is added to the given machine. If variable_trail_rule 191 * the machine recognizes a pattern with trailing context and headcnt is 283 * new - a machine constructed by connecting first to last [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | Passes.h | 53 /// PostRAMachineLICM - A clone of the LICM pass that runs during late machine 139 /// transforms following machine independent optimization. 154 /// which converts from LLVM code to machine instructions. 180 /// addMachineSSAOptimization - Add standard passes that optimize machine 185 /// targets. These passes are run while the machine code is still in SSA 244 /// Add passes that optimize machine instructions after register allocation. 264 /// passes immediately before machine code is emitted. This should return 285 /// printAndVerify - Add a pass to dump then verify the machine function, if 309 /// MachineFunctionPrinter pass - This pass prints out the machine function to 318 /// MachineDominators - This pass is a machine dominators analysis pass. [all …]
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2009-06-16 | 4098 pretty solid 1% regeression on my machine, so I'm going to put them back. 4801 Bug 25589: goto instead of state machine in lexer 4824 a state machine. Got rid of most of the local variables. Also rolled the 8127 fast/workers/use-machine-stack.html (22531) 9114 without re-entering the virtual machine. 9598 fast/workers/use-machine-stack.html (22531) 10971 6.6% progression on x86 Linux with JIT and WREC on SunSpider if using SSE2 capable machine. 11146 attempt to maintain more temporary values in machine registers. 17419 would like to eventually just hold on to offsets into the machine 20964 Moved VM/Machine.cpp => interpreter/Interpreter.cpp. [all …]
|
/external/wpa_supplicant_8/src/eapol_supp/ |
D | eapol_supp_sm.c | 36 unsigned int idleWhile; /* for EAP state machine */ 56 /* Supplicant PAE state machine */ 81 /* Key Receive state machine */ 89 /* Supplicant Backend state machine */ 159 /* Port Timers state machine - implemented as a function that will be called 235 * clearing it on initialization does not change actual state machine in SM_STATE() 522 * clearing it on initialization does not change actual state machine in SM_STATE() 814 * Backend state machine is waiting for eapNoResp or eapResp to be set in eapol_sm_getSuppRsp() 815 * and these are only set in the EAP state machine when the processing in eapol_sm_getSuppRsp() 895 * eapol_sm_step - EAPOL state machine step function [all …]
|
/external/dnsmasq/ |
D | setup.html | 17 Dnsmasq is normally run on a firewall machine (the machine with the 18 modem or other connection to your ISP.) but it can run on any machine 31 are not needed most of the time. A machine which already has a DNS 35 all. Set the IP address of the machine running dnsmasq as the DNS 42 <h2>Making the nameserver machine use dnsmasq.</h2> 44 machine will not use dnsmasq, since they get their information about 116 allocated to machine is not fixed. Dnsmasq comes with an integrated 122 a DHCP-configured machine; either the machine knows its name which it 124 address of its ethernet card. For the former to work, a machine needs to know its name when it 129 security feature to stop a machine on your network telling DHCP that [all …]
|
/external/openssh/contrib/ |
D | ssh-copy-id.1 | 21 ssh-copy-id \- install your public key in a remote machine's authorized_keys 24 .I "[user@]machine" 28 is a script that uses ssh to log into a remote machine and 29 append the indicated identity file to that machine's 53 on the remote machine (creating the file, and directory, if necessary.) 70 on the remote machine.
|
/external/llvm/include/llvm/Target/ |
D | TargetMachine.h | 51 /// TargetMachine - Primary interface to the complete machine description for 52 /// the target machine. All target-specific information should be accessible 62 /// TheTarget - The Target that this machine was created for. 103 // Interfaces to the major aspects of target machine information: 149 /// hasMCRelaxAll - Check whether all machine code instructions should be 153 /// setMCRelaxAll - Set whether all machine code instructions should be 260 /// get machine code emitted. This uses a JITCodeEmitter object to handle 261 /// actually outputting the machine code and resolving things like the address 262 /// of functions. This method returns true if machine code emission is 272 /// machine code emitted with the MCJIT. This method returns true if machine [all …]
|
/external/wpa_supplicant_8/src/eapol_auth/ |
D | eapol_auth_sm_i.h | 2 * IEEE 802.1X-2004 Authenticator - EAPOL state machine (internal definitions) 61 /* Port Timers state machine */ 64 /* Authenticator PAE state machine */ 92 /* Backend Authentication state machine */ 107 /* Reauthentication Timer state machine */ 114 /* Authenticator Key Transmit state machine */ 118 /* Key Receive state machine */ 123 /* Controlled Directions state machine */
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
D | ShHandle.h | 11 // Machine independent part of the compiler private objects 42 // The base class for the machine dependent compiler to derive from 93 // This is the interface between the machine independent code 94 // and the machine dependent code. 96 // The machine dependent code should derive from the classes 98 // destroy the machine dependent objects, which contain the 99 // above machine independent information.
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | InstrEmitter.h | 40 /// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an 64 /// specified machine instr. Insert register copies if the register is 73 /// AddOperand - Add the specified operand to the specified machine instr. II 90 /// EmitSubregNode - Generate machine code for subreg nodes. 95 /// EmitCopyToRegClassNode - Generate machine code for COPY_TO_REGCLASS nodes. 102 /// EmitRegSequence - Generate machine code for REG_SEQUENCE nodes. 109 /// (which do not go into the machine instrs.) 112 /// EmitDbgValue - Generate machine instruction for a dbg_value node. 117 /// EmitNode - Generate machine code for a node and needed dependencies.
|
/external/libpng/projects/visualc6/ |
D | pngtest.dsp | 60 # ADD BASE LINK32 /nologo /subsystem:console /machine:I386 61 ….\..\..\zlib\projects\visualc6\Win32_DLL_Release\zlib1.lib /nologo /subsystem:console /machine:I386 92 # ADD BASE LINK32 /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 93 …s\visualc6\Win32_DLL_Debug\zlib1d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 124 # ADD BASE LINK32 /nologo /subsystem:console /machine:I386 125 …\..\zlib\projects\visualc6\Win32_DLL_ASM_Release\zlib1.lib /nologo /subsystem:console /machine:I386 156 # ADD BASE LINK32 /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 157 …sualc6\Win32_DLL_ASM_Debug\zlib1d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 188 # ADD BASE LINK32 /nologo /subsystem:console /machine:I386 189 …..\..\..\zlib\projects\visualc6\Win32_LIB_Release\zlib.lib /nologo /subsystem:console /machine:I386 [all …]
|
/external/llvm/include/llvm/Support/ |
D | IntegersSubsetMapping.h | 432 DiffStateMachine Machine(LExclude, Intersection, RExclude); in diff() 442 Machine.onLOpen(LRange.getLow(), LCluster.second); in diff() 443 Machine.onLClose(LRange.getHigh()); in diff() 449 Machine.onROpen(RRange.getLow(), RCluster.second); in diff() 450 Machine.onRClose(RRange.getHigh()); in diff() 457 if (!Machine.isLOpened()) in diff() 458 Machine.onLOpen(LRange.getLow(), LCluster.second); in diff() 459 Machine.onROpen(RRange.getLow(), RCluster.second); in diff() 462 if (!Machine.isROpened()) in diff() 463 Machine.onROpen(RRange.getLow(), RCluster.second); in diff() [all …]
|
/external/icu4c/test/perf/ubrkperf/ |
D | ubrkperf20.dsp | 56 …ib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 57 …-2-0\lib\icuin.lib ..\..\..\..\lib\icutu.lib /nologo /subsystem:console /machine:I386 /out:"..\..\… 89 ….lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 90 …icuind.lib ..\..\..\..\lib\icutud.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 115 …leaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:IX86 /machine:IA64 116 …-2-0\lib\icuin.lib ..\..\..\..\lib\icutu.lib /nologo /subsystem:console /machine:IX86 /machine:IA64 140 …odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:IX86 /pdbtype:sept /machine:IA64 141 …tud.lib /nologo /subsystem:console /incremental:no /debug /machine:IX86 /pdbtype:sept /machine:IA64
|
D | ubrkperfold.dsp | 56 …ib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 57 …ser32.lib advapi32.lib shell32.lib winmm.lib /nologo /subsystem:console /machine:I386 /libpath:"..… 89 ….lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 90 # ADD LINK32 icuucd.lib icuind.lib icutud.lib winmm.lib /nologo /subsystem:console /debug /machine:… 115 …leaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:IX86 /machine:IA64 116 …ib shell32.lib winmm.lib /nologo /subsystem:console /machine:IX86 /libpath:"..\..\..\lib\\" /machi… 140 …odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:IX86 /pdbtype:sept /machine:IA64 141 …go /subsystem:console /incremental:no /debug /machine:IX86 /pdbtype:sept /libpath:"..\..\..\lib\\"…
|