Home
last modified time | relevance | path

Searched refs:he (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/openbsd/src/sys/dev/
Dhotplug.c82 struct hotplug_event he; in hotplug_device_attach() local
84 he.he_type = HOTPLUG_DEVAT; in hotplug_device_attach()
85 he.he_devclass = class; in hotplug_device_attach()
86 strlcpy(he.he_devname, name, sizeof(he.he_devname)); in hotplug_device_attach()
87 hotplug_put_event(&he); in hotplug_device_attach()
93 struct hotplug_event he; in hotplug_device_detach() local
95 he.he_type = HOTPLUG_DEVDT; in hotplug_device_detach()
96 he.he_devclass = class; in hotplug_device_detach()
97 strlcpy(he.he_devname, name, sizeof(he.he_devname)); in hotplug_device_detach()
98 hotplug_put_event(&he); in hotplug_device_detach()
[all …]
/openbsd/src/gnu/usr.bin/perl/
Dhv.h39 struct he { struct
67 struct he shared_he_he; argument
421 #define HeNEXT(he) (he)->hent_next argument
422 #define HeKEY_hek(he) (he)->hent_hek argument
423 #define HeKEY(he) HEK_KEY(HeKEY_hek(he)) argument
424 #define HeKEY_sv(he) (*(SV**)HeKEY(he)) argument
425 #define HeKLEN(he) HEK_LEN(HeKEY_hek(he)) argument
426 #define HeKUTF8(he) HEK_UTF8(HeKEY_hek(he)) argument
427 #define HeKWASUTF8(he) HEK_WASUTF8(HeKEY_hek(he)) argument
428 #define HeKLEN_UTF8(he) (HeKUTF8(he) ? -HeKLEN(he) : HeKLEN(he)) argument
[all …]
Dhv.c158 HE* he; in S_new_he() local
163 he = (HE*) *root; in S_new_he()
164 assert(he); in S_new_he()
165 *root = HeNEXT(he); in S_new_he()
166 return he; in S_new_he()
207 HE *he = PL_hv_fetch_ent_mh; in Perl_free_tied_hv_pool() local
208 while (he) { in Perl_free_tied_hv_pool()
209 HE * const ohe = he; in Perl_free_tied_hv_pool()
210 Safefree(HeKEY_hek(he)); in Perl_free_tied_hv_pool()
211 he = HeNEXT(he); in Perl_free_tied_hv_pool()
[all …]
Dmro_core.c321 HE *const he = hv_fetch_ent(stored, subsv, 1, 0); in S_mro_get_linear_isa_dfs() local
322 assert(he); in S_mro_get_linear_isa_dfs()
323 if(HeVAL(he) != &PL_sv_undef) { in S_mro_get_linear_isa_dfs()
326 SV *const val = HeVAL(he); in S_mro_get_linear_isa_dfs()
327 HEK *const key = HeKEY_hek(he); in S_mro_get_linear_isa_dfs()
329 HeVAL(he) = &PL_sv_undef; in S_mro_get_linear_isa_dfs()
633 HE *he = hv_fetch_ent(PL_isarev, sv, TRUE, 0); in Perl_mro_isa_changed_in() local
639 mroisarev = MUTABLE_HV(HeVAL(he)); in Perl_mro_isa_changed_in()
678 HE *he = hv_fetch_ent(PL_isarev, sv, TRUE, 0); in Perl_mro_isa_changed_in() local
684 mroisarev = MUTABLE_HV(HeVAL(he)); in Perl_mro_isa_changed_in()
[all …]
/openbsd/src/gnu/usr.bin/perl/ext/Hash-Util/
DUtil.xs27 HE *he; variable
33 while((he = hv_iternext_flags(hash, HV_ITERNEXT_WANTPLACEHOLDERS))!= NULL) {
34 key=hv_iterkeysv(he);
35 av_push(HeVAL(he) == &PL_sv_placeholder ? placeholder : keys,
47 HE *he; variable
50 while((he = hv_iternext_flags(hash, HV_ITERNEXT_WANTPLACEHOLDERS))!= NULL) {
51 key=hv_iterkeysv(he);
52 if (ix || HeVAL(he) == &PL_sv_placeholder) {
176 HE *he; in bucket_info() local
180 for (he= bucket_array[bucket_index]; he; he= HeNEXT(he) ) { in bucket_info()
[all …]
/openbsd/src/usr.sbin/hotplugd/
Dhotplugd.c63 struct hotplug_event he; in main() local
112 if (read(devfd, &he, sizeof(he)) == -1) { in main()
120 switch (he.he_type) { in main()
123 he.he_devname, he.he_devclass); in main()
124 exec_script(_PATH_ETC_HOTPLUG_ATTACH, he.he_devclass, in main()
125 he.he_devname); in main()
129 he.he_devname, he.he_devclass); in main()
130 exec_script(_PATH_ETC_HOTPLUG_DETACH, he.he_devclass, in main()
131 he.he_devname); in main()
134 syslog(LOG_NOTICE, "unknown event (0x%x)", he.he_type); in main()
/openbsd/src/regress/lib/libedit/readline/
Dhistory.c72 HIST_ENTRY *he; in check_current() local
74 he = current_history(); in check_current()
77 if (he != NULL) in check_current()
82 if (he == NULL) in check_current()
84 else if (strcmp(he->line, want) != 0) in check_current()
85 msg("%s is \"%s\" instead of \"%s\".", descr, he->line, want); in check_current()
91 HIST_ENTRY *he; in check_get() local
93 if ((he = history_get(history_base + idx)) == NULL) in check_get()
95 else if (he->line == NULL) in check_get()
97 else if (strcmp(he->line, want) != 0) in check_get()
[all …]
/openbsd/src/usr.sbin/relayd/
Dcheck_tcp.c55 int he = HCE_TCP_SOCKET_OPTION; in check_tcp() local
73 he = HCE_TCP_SOCKET_LIMIT; in check_tcp()
75 he = HCE_TCP_SOCKET_ERROR; in check_tcp()
102 he = HCE_TCP_CONNECT_FAIL; in check_tcp()
116 hce_notify_done(cte->host, he); in check_tcp()
259 cte->host->he = HCE_TCP_READ_TIMEOUT; in tcp_read_buf()
263 hce_notify_done(cte->host, cte->host->he); in tcp_read_buf()
280 hce_notify_done(cte->host, cte->host->he); in tcp_read_buf()
289 hce_notify_done(cte->host, cte->host->he); in tcp_read_buf()
314 cte->host->he = HCE_SEND_EXPECT_OK; in check_send_expect()
[all …]
Dhce.c111 host->he = HCE_ABORT; in hce_disable_events()
142 host->he = HCE_INTERVAL_TIMEOUT; in hce_launch_checks()
194 hce_notify_done(struct host *host, enum host_error he) in hce_notify_done() argument
224 host->he = he; in hce_notify_done()
242 st.he = he; in hce_notify_done()
244 msg = host_error(he); in hce_notify_done()
280 hce_notify_done(h, he); in hce_notify_done()
300 host->he = HCE_NONE; in hce_dispatch_pfe()
308 host->he = HCE_NONE; in hce_dispatch_pfe()
/openbsd/src/usr.sbin/rpc.bootparamd/
Dbootparamd.c35 struct hostent *he; variable
159 he = gethostbyaddr(&haddr, sizeof(haddr), AF_INET); in bootparamproc_whoami_1_svc()
160 if (!he) in bootparamproc_whoami_1_svc()
164 warnx("This is host %s", he->h_name); in bootparamproc_whoami_1_svc()
166 syslog(LOG_NOTICE, "This is host %s", he->h_name); in bootparamproc_whoami_1_svc()
168 strlcpy(askname, he->h_name, sizeof askname); in bootparamproc_whoami_1_svc()
219 he = NULL; in bootparamproc_getfile_1_svc()
220 he = gethostbyname(getfile->client_name); in bootparamproc_getfile_1_svc()
221 if (!he) in bootparamproc_getfile_1_svc()
224 strlcpy(askname, he->h_name, sizeof askname); in bootparamproc_getfile_1_svc()
[all …]
/openbsd/src/usr.bin/getent/
Dgetent.c221 hostsprint(const struct hostent *he) in hostsprint() argument
225 if (inet_ntop(he->h_addrtype, he->h_addr, buf, sizeof(buf)) == NULL) in hostsprint()
227 printfmtstrings(he->h_aliases, " ", " ", "%-39s %s", buf, he->h_name); in hostsprint()
264 struct hostent *he; in hosts() local
272 he = NULL; in hosts()
274 he = gethostbyaddr(&in6, sizeof(in6), AF_INET6); in hosts()
276 he = gethostbyaddr(&in, sizeof(in), AF_INET); in hosts()
277 if (he != NULL) in hosts()
278 hostsprint(he); in hosts()
/openbsd/src/games/quiz/datfiles/
Dlatin5 impulit:{he }[drove|forced]
7 sinat:{he }permit{s}
25 exegit:{he }[finished|spent]
27 optat:{he }[desire{s}|wish{es}]
62 minatur:{he }threaten{s}
80 corrupit:{he }[spoil{ed}|ruin{ed}]
106 refert:{he }[say{s}|tell{s}]
/openbsd/src/games/fortune/datfiles/
Dlimerick154 So I get `ahead' eating you he-men!"
172 He could and he did
215 Since he's jumped thirteen girls in a row!
251 But he found that the sophomore'd got off more.
257 - so he added a footnote on sucking 'em.
321 Just didn't know what he was missin',
328 When he popped her cherry,
346 And when he was done
404 He really diddled her, didn' he?
416 Just remember, he's eyeless and armless."
[all …]
Dfortunes2-o20 I'm a lumberjack and I'm OK, He's a lumberjack and he's OK,
21 I sleep all night and I work all day. He sleeps all night and he works
24 I cut down trees, I eat my lunch, He cuts down trees, he eats his lunch,
26 On Wednesday I go shopping, On Wednesday he goes shopping,
29 I cut down trees, I skip and jump, He cuts down trees, he skips and jumps,
34 I cut down trees, I wear high heels, He cuts down trees, he wears high heels,
117 A business executive is consumed by jealousy: he suspects his wife
118 of cheating on him. The suspicion grows and grows, and one morning as he
119 drives to work he can't take it any more. He thinks to himself, "she
121 When he gets to his office, he calls home. The maid answers. He
[all …]
/openbsd/src/gnu/usr.bin/perl/ext/mro/
Dmro.xs165 HE* const he = hv_fetch_ent(tails, seqitem, 1, 0); in S_mro_get_linear_isa_c3() local
166 if(he) { in S_mro_get_linear_isa_c3()
167 sv_inc_nomg(HeVAL(he)); in S_mro_get_linear_isa_c3()
384 HE* he; variable
393 he = hv_fetch_ent(PL_isarev, classname, 0, 0);
394 isarev = he ? MUTABLE_HV(HeVAL(he)) : NULL;
415 HE* he; variable
424 he = hv_fetch_ent(PL_isarev, classname, 0, 0);
425 isarev = he ? MUTABLE_HV(HeVAL(he)) : NULL;
/openbsd/src/lib/libedit/
Dreadline.c1138 HIST_ENTRY *he; in stifle_history() local
1150 he = remove_history(0); in stifle_history()
1151 free(he->data); in stifle_history()
1152 free((void *)he->line); in stifle_history()
1153 free(he); in stifle_history()
1429 HIST_ENTRY *he; in remove_history() local
1435 if ((he = malloc(sizeof(*he))) == NULL) in remove_history()
1438 if (history(h, &ev, H_DELDATA, num, &he->data) != 0) { in remove_history()
1439 free(he); in remove_history()
1443 he->line = ev.str; in remove_history()
[all …]
/openbsd/src/games/hunt/hunt/
Dlist.c211 struct hostent *he; in probe_drivers() local
235 if (!target && (he = gethostbyname(preferred)) != NULL) { in probe_drivers()
236 sin.sin_family = he->h_addrtype; in probe_drivers()
238 memcpy(&sin.sin_addr, he->h_addr, he->h_length); in probe_drivers()
/openbsd/src/regress/usr.bin/dc/
Dt7.out14 Long time the manxome foe he sought --
15 So rested he by the Tumtum tree,
18 And, as in uffish thought he stood,
/openbsd/src/regress/usr.bin/mandoc/char/space/
Dtab-filled.out_ascii7 …bss aarree rreellaattiivvee ttoo tthhee bbeeggiinnnniinngg ooff tth
22 …TTaabb mmeeaassuurreemmeenntt ccoonnttiinnuueess oonnttoo tthhee nn…
/openbsd/src/gnu/llvm/llvm/docs/HistoricalNotes/
D2001-06-20-.NET-Differences.txt17 I also talked to the lead guy for KAI's C++ compiler (Arch Robison) and he
20 link-time code generation. In fact, he said that the .o file was nearly
21 empty and was entirely generated from the .il at link-time. But he agreed
/openbsd/src/games/hack/
Ddata67 especially a hat. And he was clearly just as frightened as the
68 imps though he could not go so fast. Ramon Alonzo saw that there
71 to gently, he raised his hat, and asked of the gnome his name.
72 The gnome did not stop his hasty shuffle a moment as he answered
85 Are you not he?
97 sit on that stone, he would be unable to quit it for ever.
108 rigadaun in Tipperary. Although he works for the Faeries,
111 thing of the manic-depressive about it: first he is quite
112 happy, whistling merrily as he nails a sole on to a shoe; a
113 few minutes later, he is sullen and morose, drunk on his
[all …]
/openbsd/src/gnu/usr.bin/perl/dist/Test/t/
Dmultiline.t12 Jojo was a man who thought he was a loner
13 But he knew it couldn't last
/openbsd/src/regress/usr.bin/mandoc/char/hyphen/
Dman.out_ascii4 hhyypphheenn--mmaann - formatting hyphens and breaking lines
14 hheerree
/openbsd/src/usr.bin/make/
Darch.c567 struct arch_member *he; in ArchMTimeMember() local
570 he = ohash_find(&ar->members, ohash_qlookupi(&ar->members, in ArchMTimeMember()
572 if (he != NULL) in ArchMTimeMember()
573 return mtime_of_member(he); in ArchMTimeMember()
578 he = ohash_find(&ar->members, in ArchMTimeMember()
580 if (he != NULL) in ArchMTimeMember()
581 return mtime_of_member(he); in ArchMTimeMember()
/openbsd/src/games/cribbage/
Dcribbage.n77 a card that brings the total exactly to 31, he pegs 2. If a player is
78 unable to play another card without exceeding 31, he must say "Go," and
80 additional cards he can without exceeding 31. If such additional cards
81 bring the total to exactly 31, he pegs 2 instead of 1.
182 out on showing his hand, he wins, even though dealer might have gone out
187 61, he is lurched, and the other wins a double game.
203 If a player places a peg short of the amount to which he is
204 entitled, he may not correct his error after he has played the next card
205 or after the cut for the next deal. If he pegs more than his announced
225 unless you will surely peg as much as he by playing on.

12345678910>>...12