HomeSort by: relevance | last modified time | path
    Searched defs:show (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/usr.bin/make/unit-tests/
ternary.mk 4 @for x in "" A= A=42; do ${.MAKE} -f ${MAKEFILE} show $$x; done
6 show: target
opt-x-reduce-exported.mk 17 @${MAKE} -r -f ${MAKEFILE} show-env
19 show-env: .PHONY
varcmd.mk 29 show: target
32 one: show
35 two: show
38 three: show
58 four: show
67 show-v:
70 five: show show-v
73 six: show-v
74 @${.MAKE} -f ${MAKEFILE} V=override show-
    [all...]
cmdline.mk 25 @${MAKE_CMD} MAKEOBJDIR=${DIR2} show-objdir
35 @${MAKE_CMD} MAKEOBJDIR='$${TMPBASE}/$${SUB2}' show-objdir
37 show-objdir:
  /src/common/dist/zlib/
configure 158 show() function
195 show $cc -c $test.c
389 show $*
396 show $*
411 show $*
838 # show the results in the log
  /src/sbin/route/
show.c 1 /* $NetBSD: show.c,v 1.51 2020/08/29 19:28:32 christos Exp $ */
37 __RCSID("$NetBSD: show.c,v 1.51 2020/08/29 19:28:32 christos Exp $");
132 show(int argc, char *const *argv, int flags) function in typeref:typename:void
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_debugfs.c 37 int (*show)(struct seq_file *, void *) = inode->i_private; local in function:kfd_debugfs_open
39 return single_open(file, show, NULL);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/mpeg/
nouveau_nvkm_engine_mpeg_nv50.c 74 u32 show = stat; local in function:nv50_mpeg_intr
80 show &= ~0x01000000;
84 if (show) {
nouveau_nvkm_engine_mpeg_nv44.c 160 u32 show = stat; local in function:nv44_mpeg_intr
176 show &= ~0x01000000;
181 show &= ~0x01000000;
188 if (show) {
nouveau_nvkm_engine_mpeg_nv31.c 198 u32 show = stat; local in function:nv31_mpeg_intr
207 show &= ~0x01000000;
212 show &= ~0x01000000;
219 if (show) {
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_debugfs.h 49 * @show:
51 * Show callback. &seq_file->private will be set to the &struct
55 int (*show)(struct seq_file*, void*); member in struct:drm_info_list
  /src/games/morse/
morse.c 109 static void show(const char *);
183 show("");
187 show("...-.-"); /* SK */
224 show(alph[c - (isupper(c) ? 'A' : 'a')]);
226 show(digit[c - '0']);
228 show(""); /* could show BT for a pause */
232 show(other[i].morse);
238 show(const char *s) function in typeref:typename:void
  /src/sys/arch/hpc/stand/hpcboot/menu/
tabwindow.h 109 virtual void show(void) { function in class:TabWindow
  /src/usr.bin/comm/
comm.c 61 static void show(FILE *, const char *, char *);
127 show(fp2, col2, line2);
132 show(fp1, col1, line1);
168 show(FILE *fp, const char *offset, char *buf) function in typeref:typename:void
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_crtc.h 63 void (*show)(struct nouveau_crtc *, bool update); member in struct:nouveau_crtc::__anon05ec6aa40208
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/
nouveau_nvkm_engine_gr_nv20.c 200 u32 show = stat; local in function:nv20_gr_intr
209 if (show) {
210 nvkm_snprintbf(msg, sizeof(msg), nv10_gr_intr_name, show);
216 show, msg, nsource, src, nstatus, sta, chid,
nouveau_nvkm_engine_gr_nv40.c 252 u32 show = stat; local in function:nv40_gr_intr
275 if (show) {
276 nvkm_snprintbf(msg, sizeof(msg), nv10_gr_intr_name, show);
282 show, msg, nsource, src, nstatus, sta,
  /src/usr.bin/uniq/
uniq.c 60 static void show(FILE *, const char *);
164 show(ofp, prevline);
177 show(ofp, prevline);
184 * show --
189 show(FILE *ofp, const char *str) function in typeref:typename:void
  /src/sbin/gpt/
show.c 33 __FBSDID("$FreeBSD: src/sbin/gpt/show.c,v 1.14 2006/06/22 22:22:32 marcel Exp $");
36 __RCSID("$NetBSD: show.c,v 1.47 2025/02/23 20:47:19 christos Exp $");
67 "show",
212 show(gpt_t gpt, int xshow) function in typeref:typename:int
357 printf(PFX "TypeID: %s\n", s2); /* XXX: show this? */
358 printf(PFX "GUID: %s\n", s2); /* XXX: show this? */
481 return entry > 0 ? show_one(gpt, entry) : show(gpt, xshow);
  /src/distrib/syspkg/mk/
bsd.syspkg.mk 232 .if !target(show-downlevel)
233 show-downlevel:
427 # Show (recursively) all the packages this package depends on.
492 .if !target(show-pkgtools-version)
493 show-pkgtools-version:
498 # i.e. "make show-var VARNAME=var", will print var's value
499 show-var:
  /src/tests/net/mcast/
mcast.c 181 show(const char *prefix, const struct message *msg) function in typeref:typename:void
295 show("sending", &msg);
336 show("got", &msg);
  /src/usr.bin/systat/
syscall.c 73 static int show = SHOW_COUNTS; variable in typeref:typename:int
139 getinfo(&s, show);
207 switch (show) {
381 show = SHOW_COUNTS;
383 show = SHOW_TIMES;
385 show = SHOW_COUNTS | SHOW_TIMES;
395 error("Usage: show [counts|times|ratio]");
  /src/usr.sbin/ac/
ac.c 111 static void show(const char *, time_t);
333 show(const char *name, time_t secs) function in typeref:typename:void
345 show(lp->name, lp->secs);
553 show("total", Total);
  /src/usr.sbin/iopctl/
iopctl.c 57 static int show(const char *, const char *, ...) __printflike(2, 3);
165 show(const char *hdr, const char *fmt, ...) function in typeref:typename:int
260 show("flags", "0x%x", le16toh(lct->flags));
261 show("iop flags", "0x%x", le32toh(lct->iopflags));
262 show("lct change indicator", "%d", le32toh(lct->changeindicator));
269 show("lct entry", "%d", i);
270 show("entry size", "%d bytes", le16toh(ent->entrysize) << 2);
271 show("local tid", "%d", le16toh(ent->localtid) & 4095);
272 show("change indicator", "%d", le32toh(ent->changeindicator));
273 show("flags", "%x", le32toh(ent->deviceflags))
    [all...]
  /src/usr.sbin/lpr/common_source/
displayq.c 216 * Note that a file in transit may show up in either queue.
349 show(line + 1, fname, j);
389 show(const char *nfile, const char *file, int copies) function in typeref:typename:void

Completed in 65 milliseconds

1 2