/src/sys/arch/hpc/stand/hpcboot/menu/ |
window.h | 43 explicit Window(HpcBootApp &app) 44 : _app(app), _parent_window(0) { /* NO-OP */ } 45 explicit Window(HpcBootApp &app, HWND parent) 46 : _app(app), _parent_window(parent) { /* NO-OP */ }
|
rootwindow.h | 77 BootButton(HpcBootApp &app, RootWindow &root, RECT &rect) 78 : Window(app, root._window), _root(root) { 90 CancelButton(HpcBootApp &app, RootWindow &root, RECT &rect) 91 : Window(app, root._window), _root(root) { 103 ProgressBar(HpcBootApp &app, RootWindow &root, RECT &rect) 104 : Window(app, root._window), _root(root) {
|
tabwindow.h | 46 explicit TabWindowBase(HpcBootApp &app, HWND parent, 48 : Window(app, parent) {
|
rootwindow.cpp | 43 RootWindow::RootWindow(HpcBootApp &app) 44 : Window(app)
|
/src/bin/sh/ |
alias.c | 72 struct alias *ap, **app; local in function:setalias 75 app = hashalias(name); 82 ap->next = *app; 83 *app = ap; 88 freealias(struct alias **app, int force) 90 struct alias *ap = *app; 93 return app; 110 *app = ap->next; 116 return app; 122 struct alias *ap, **app; local in function:unalias 147 struct alias **app; local in function:rmaliases 236 struct alias *ap, **app; local in function:countaliases [all...] |
parser.c | 342 union node *ap, **app; local in function:command 417 app = ≈ 420 *app = n2; 421 app = &n2->narg.next; 423 *app = NULL; 490 app = &cp->nclist.pattern; 496 *app = ap = makeword(startlinno); 500 app = &ap->narg.next; 623 union node *args, **app; local in function:simplecmd 641 app = &args [all...] |
/src/sys/arch/hpc/stand/hpcboot/ |
hpcboot.cpp | 59 HpcBootApp *app = 0; // Application body. local in function:WinMain 64 app = new HpcBootApp(instance); 65 app->_cons = Console::Instance(); 66 app->_root = new RootWindow(*app); 68 if (!app->registerClass(reinterpret_cast <WNDPROC>(Window::_wnd_proc))) 71 if (!app->_root->create(0)) 76 ret = app->run(); // Main loop. 82 if (app->_root) 83 delete app->_root [all...] |
/src/sys/dev/pci/ |
if_atw_pci.c | 112 const struct atw_pci_product *app; local in function:atw_pci_lookup 114 for (app = atw_pci_products; 115 app->app_product_name != NULL; 116 app++) { 117 if (PCI_VENDOR(pa->pa_id) == app->app_vendor && 118 PCI_PRODUCT(pa->pa_id) == app->app_product) 119 return (app); 175 const struct atw_pci_product *app; local in function:atw_pci_attach 184 app = atw_pci_lookup(pa); 185 if (app == NULL) [all...] |
if_an_pci.c | 105 const struct an_pci_product *app; local in function:an_pci_match 107 for (app = an_pci_products; app->app_vendor != 0; app++) { 108 if (PCI_VENDOR(pa->pa_id) == app->app_vendor && 109 PCI_PRODUCT(pa->pa_id) == app->app_product)
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
am335x-baltos-leds.dtsi | 31 app { 32 label = "onrisc:green:app"; 44 AM33XX_PADCONF(AM335X_PIN_MII1_TXD2, PIN_OUTPUT_PULLDOWN, MUX_MODE7) /* mii1_txd2.gpio0_17 APP LED */
|
stih407-family.dtsi | 863 /* fdma app */
|
/src/common/dist/zlib/contrib/iostream/ |
zfstream.cpp | 30 } else if ( io_mode & ios::app ) { 31 mode = ios::app; 44 if ( io_mode & (ios::out|ios::app )) { 72 } else if ( io_mode & ios::app ) { 73 mode = ios::app; 86 if ( io_mode & (ios::out|ios::app )) {
|
/src/sys/external/bsd/gnu-efi/dist/gnuefi/ |
crt0-efi-ia32.S | 64 call efi_main # call app with "image" and "systab" argument
|
/src/sys/arch/ia64/stand/ia64/efi/ |
Makefile | 47 --target=efi-app-${MACHINE_ARCH} loader.sym ${.TARGET}
|
/src/sys/external/bsd/gnu-efi/dist/apps/ |
Makefile | 71 FORMAT := --target efi-app-$(ARCH)
|
/src/share/mk/ |
bsd.x11.mk | 303 s,@appdefaultdir@,\\$$\{libdir}/X11/app-defaults,; \ 392 # APPDEFS (app defaults) handling 395 appdefsinstall:: .PHONY ${APPDEFS:@S@${DESTDIR}${X11LIBDIR}/app-defaults/${S:T:R}@} 396 .PRECIOUS: ${APPDEFS:@S@${DESTDIR}${X11LIBDIR}/app-defaults/${S:T:R}@} 404 ${DESTDIR}${X11LIBDIR}/app-defaults/${S:T:R}: ${S} __appdefinstall 442 apploaddir ${X11ROOTDIR}/lib/X11/app-defaults \
|
/src/sys/kern/ |
kern_tc.c | 1067 pps_params_t *app; local in function:pps_ioctl 1083 app = (pps_params_t *)data; 1084 if (app->mode & ~pps->ppscap) 1086 pps->ppsparam = *app; 1089 app = (pps_params_t *)data; 1090 *app = pps->ppsparam; 1091 app->api_version = PPS_API_VERS_1;
|
/src/bin/ksh/ |
c_sh.c | 780 timex_hook(t, app) 782 char ** volatile *app; 784 char **wp = *app; 811 *app = wp;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_malloc_mac.inc | 64 // Prevent the client app from overwriting the zone contents.
|
/src/usr.bin/config/ |
gram.y | 149 static void app(struct loclist *, struct loclist *); 571 | locdef ',' loclist { $$ = $1; app($1, $3); } 982 | locators locator { $$ = $2; app($2, $1); } 1426 app(struct loclist *p, struct loclist *q)
|
/src/sys/external/bsd/ipf/netinet/ |
ip_proxy.c | 652 aproxy_t *a, **app; local in function:ipf_proxy_del 654 for (app = &ap_proxylist; ((a = *app) != NULL); app = &a->apr_next) { 658 *app = a->apr_next;
|
/src/common/dist/zlib/contrib/iostream3/ |
zfstream.cc | 138 bool testa = mode & std::ios_base::app;
|
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
FuzzerMerge.cpp | 224 std::ofstream OF(CFPath, std::ofstream::out | std::ofstream::app);
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/ti/ |
k3-am65-main.dtsi | 691 reg-names = "app", "dbics", "config", "atu"; 711 reg-names = "app", "dbics", "addr_space", "atu"; 724 reg-names = "app", "dbics", "config", "atu"; 744 reg-names = "app", "dbics", "addr_space", "atu";
|
/src/share/terminfo/ |
terminfo | 3230 #### Terminal.app 3232 # nsterm*|Apple_Terminal - AppKit Terminal.app 3234 # Terminal.app is a Terminal emulator bundled with NeXT's NeXTSTEP and 3237 # "terminal.app" in GNUstep, but I believe it to be an unrelated 3245 # To determine the version of Terminal.app you're using by running: 3273 # For iTerm.app, see "iterm". 3276 # The AppKit Terminal.app descriptions all have names beginning with 3285 # in the status line, since Terminal.app incorrectly interprets their 3291 # The Mythology* of AppKit Terminal.app: 3296 # and used as the basis for the Terminal.app in NeXTSTEP 2+ [all...] |