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

  /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_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)
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...]
  /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 = &ap;
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/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/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;

Completed in 35 milliseconds