HomeSort by: relevance | last modified time | path
    Searched defs:nbss (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/compat/linux/common/
linux_sig_notalpha.c 126 sigset_t nbss, obss; local
132 linux_old_to_native_sigset(&nbss, &nlss);
134 error = sigprocmask1(l, SIG_SETMASK, &nbss, &obss);
linux_signal.c 413 sigset_t nbss, obss; local
434 linux_old_to_native_sigset(&nbss, &nlss);
438 set ? &nbss : NULL, oset ? &obss : NULL);
464 sigset_t nbss, obss; local
491 linux_to_native_sigset(&nbss, &nlss);
495 set ? &nbss : NULL, oset ? &obss : NULL);
  /src/sys/compat/netbsd32/
netbsd32_compat_13.c 67 sigset_t nbss, obss; local
72 native_sigset13_to_sigset(&ness, &nbss);
74 error = sigprocmask1(l, SCARG(uap, how), &nbss, &obss);
  /src/sys/compat/common/
kern_sig_13.c 161 sigset_t nbss, obss; local
165 native_sigset13_to_sigset(&ness, &nbss);
167 error = sigprocmask1(l, SCARG(uap, how), &nbss, &obss);
  /src/usr.bin/elf2aout/
elf2aout.c 329 struct sect ndata, nbss; local
333 nbss.vaddr = ph[i].p_vaddr + ph[i].p_filesz;
334 nbss.len = ph[i].p_memsz - ph[i].p_filesz;
337 combine(&bss, &nbss, 1);
  /src/sys/compat/linux32/common/
linux32_signal.c 584 sigset_t nbss, obss; local
590 linux32_old_to_native_sigset(&nbss, &nlss);
592 error = sigprocmask1(l, SIG_SETMASK, &nbss, &obss);
  /src/usr.bin/elf2ecoff/
elf2ecoff.c 244 struct sect ndata, nbss; local
248 nbss.vaddr = ph[i].p_vaddr + ph[i].p_filesz;
249 nbss.len = ph[i].p_memsz - ph[i].p_filesz;
254 "nbss =%d\n", i, ph[i].p_type,
255 ph[i].p_flags, ndata.len, nbss.len);
258 combine(&bss, &nbss, 1);
  /src/external/bsd/wpa/dist/wpa_supplicant/
bss.c 744 struct wpa_bss *nbss; local
759 nbss = os_realloc(bss, sizeof(*bss) + res->ie_len +
761 if (nbss) {
763 wpa_s->last_scan_res[i] = nbss;
766 wpa_s->current_bss = nbss;
769 wpa_s->ml_connect_probe_bss = nbss;
772 wpa_bss_update_pending_connect(cwork, nbss);
774 bss = nbss;

Completed in 20 milliseconds