Home
last modified time | relevance | path

Searched refs:bfd (Results 1 – 6 of 6) sorted by path

/illumos-gate/usr/src/cmd/fdformat/
H A Dfdformat.c1422 int bfd; in valid_DOS_boot() local
1448 if ((bfd = open(bootfile, O_RDONLY)) == -1) { in valid_DOS_boot()
1458 if (read(bfd, bootloader, boot_size) != boot_size) { in valid_DOS_boot()
1462 (void) close(bfd); in valid_DOS_boot()
1475 (void) close(bfd); in valid_DOS_boot()
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c1682 int i, c, bfd; in main() local
2007 bfd = Open("bounds", O_WRONLY | O_CREAT | O_TRUNC, 0644); in main()
2008 Pwrite(bfd, boundstr, strlen(boundstr), 0); in main()
2009 (void) close(bfd); in main()
/illumos-gate/usr/src/cmd/sendmail/util/
H A Dmail.local.c114 static int bfd, hfd; /* temp file */ variable
385 if (bfd == -1 || hfd == -1)
392 deliver(hfd, bfd, rcpt_addr[i],
395 close(bfd);
534 bfd = -1;
537 if ((bfd = mkstemp(btn)) == -1 || (bfp = fdopen(bfd, "w+")) == NULL) {
538 if (bfd != -1)
539 (void) close(bfd);
702 if ((newfd = dup(bfd)) >= 0) {
704 bfd = newfd;
[all …]
/illumos-gate/usr/src/data/hwdata/
H A Dpci.ids11504 1bfd 0003 GeForce 405
11505 1bfd 8006 GeForce 405
11506 1bfd 8007 GeForce 315M
25160 1bfd EeeTOP
H A Dusb.ids14109 0bfd Kvaser AB
20351 1bfd TouchPack
/illumos-gate/usr/src/uts/sun4/os/
H A Dbus_func.c47 bfd->bf_type = type; in bus_func_register()
48 bfd->bf_func = func; in bus_func_register()
49 bfd->bf_arg = arg; in bus_func_register()
53 bfd_list = bfd; in bus_func_register()
70 for (bfd = bfd_list; bfd != NULL; bfd = bfd->bf_next) { in bus_func_unregister()
71 if (bfd->bf_type == type && bfd->bf_func == func && in bus_func_unregister()
73 *pp = bfd->bf_next; in bus_func_unregister()
76 pp = &bfd->bf_next; in bus_func_unregister()
81 if (bfd != NULL) in bus_func_unregister()
100 for (bfd = bfd_list; bfd != NULL; bfd = bfd->bf_next) { in bus_func_invoke()
[all …]