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

1 2 3 4 5 6 7 8 91011

  /src/usr.bin/make/unit-tests/
opt-debug-graph2.mk 13 made-target: .PHONY
16 error-target: .PHONY
19 aborted-target: .PHONY aborted-target-dependency
20 aborted-target-dependency: .PHONY
23 all: made-target error-target aborted-target
opt-debug-graph3.mk 13 made-target: .PHONY
16 error-target: .PHONY
19 aborted-target: .PHONY aborted-target-dependency
20 aborted-target-dependency: .PHONY
23 all: made-target error-target aborted-target
cond-func-commands.mk 7 # At this point, the target 'target' does not exist yet, therefore it cannot
9 .if commands(target)
13 target: target
15 # Now the target exists, but it still has no commands.
16 .if commands(target)
20 target: target
23 # Even after the comment, the target still has no commands.
24 .if commands(target)
28 target target
    [all...]
cond-func-target.mk 1 # $NetBSD: cond-func-target.mk,v 1.5 2025/01/10 23:00:38 rillig Exp $
3 # Tests for the target() function in .if conditions.
7 # The target "target" does not exist yet.
8 .if target(target)
12 target: target
14 # The target exists, even though it does not have any commands.
15 .if !target(target)
19 target: target
28 target: target
    [all...]
directive.mk 21 # There is no directive called '.target', therefore this is parsed as a
23 .target target: source target
39 # expect+1: Invalid line "target-without-colon"
40 target-without-colon
42 # expect+1: Invalid line "target-without-colon another-target"
43 target-without-colon another-target
jobs-empty-commands-error.mk 3 # In jobs mode, the shell commands for creating a target are written to a
13 all: existing-target
15 existing-target:
18 all: nonexistent-target
opt-debug-graph1.mk 8 all: made-target made-target-no-sources
10 made-target: made-source
14 made-target-no-sources:
16 unmade-target: unmade-sources unmade-silent-source
20 unmade-target-no-sources:
cond-func-make-main.mk 8 # 1. The default main target is the first target in the given makefiles that
15 # override the default main target from above.
22 first-main-target:
23 : Making ${.TARGET}.
25 # Even though the main-target would actually be made at this point, it is
27 .if make(first-main-target)
31 # Declaring a target via the .MAIN dependency adds it to the targets to be
37 .MAIN: dot-main-target-1a dot-main-target-1
    [all...]
depsrc.mk 8 # TODO: Test 'target: ${:U.SILENT}'
12 target: .PHONY source-${DEFINED_LATER} target
20 : 'This is in contrast to local variables such as $${.TARGET}.'
29 target: .UNKNOWN target
32 : Making ${.TARGET} from ${.ALLSRC:S,^$,nothing,W}.
directive-info.mk 37 # expect+1: no-target: no-source
38 .info no-target: no-source # This is a .info directive, not a dependency.
depsrc-meta.mk 15 actual-test: depsrc-meta-target
16 depsrc-meta-target: .META
17 @> ${.TARGET}-file
18 @rm -f ${.TARGET}-file
22 @awk '/^TARGET/ { print "| " $$0 }' depsrc-meta-target.meta
23 @rm depsrc-meta-target.meta
deptgt-end-fail.mk 3 # Tests for an errors in the main target, its dependencies,
6 # Before 2020-11-25, an error in the .END target did not print the "Stop.",
20 . for target in ${all}-${all-dep}-${end}-${end-dep}
21 test: ${target}
22 ${target}: .PHONY .SILENT
45 : Making ${.TARGET} from ${.ALLSRC}.
49 : Making ${.TARGET} out of nothing.
53 : Making ${.TARGET} from ${.ALLSRC}.
57 : Making ${.TARGET} out of nothing.
69 # .ERROR target instead, see deptgt-error.mk
    [all...]
  /src/tests/usr.bin/xlint/lint1/
msg_328.c 8 union target { union
15 union target arg = { 123 };
17 arg = (union target)3;
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_throttle.c 45 struct i915_request *request, *target = NULL; local in function:i915_gem_throttle_ioctl
58 if (target && xchg(&target->file_priv, NULL))
59 list_del(&target->client_link);
61 target = request;
63 if (target)
64 i915_request_get(target);
67 if (!target)
70 ret = i915_request_wait(target,
73 i915_request_put(target);
    [all...]
  /src/common/lib/libc/rpc/
xdr_array.c 92 char *target = *addrp; local in function:__weak_alias
111 if (target == NULL)
116 *addrp = target = mem_alloc(nodesize);
117 if (target == NULL) {
121 memset(target, 0, nodesize);
135 stat = (*elproc)(xdrs, target);
136 target += elsize;
  /src/lib/libc/stdio/
fseeko.c 66 off_t target, curoff; local in function:__weak_alias
173 target = offset;
177 target = st.st_size + offset;
211 * If the target offset is within the current buffer,
217 target >= curoff && target < curoff + (off_t)n) {
218 int o = (int)(target - curoff);
238 curoff = target & ~(fp->_blksize - 1);
246 n = (int)(target - curoff);
  /src/sbin/mount_null/
mount_null.c 85 char target[MAXPATHLEN], canon_dir[MAXPATHLEN]; local in function:mount_null
107 pathadj(argv[0], target);
110 if (strcmp(target, canon_dir) == 0)
112 argv[0], target, argv[1], canon_dir);
114 args.la.target = target;
117 err(1, "%s on %s", target, canon_dir);
  /src/sbin/mount_overlay/
mount_overlay.c 85 char target[MAXPATHLEN], canon_dir[MAXPATHLEN]; local in function:mount_overlay
107 pathadj(argv[0], target);
110 args.la.target = target;
113 err(1, "%s on %s", target, canon_dir);
  /src/tests/net/tcp/
tcp_shutdown.c 63 char *target; local in function:main
67 target = argv[1];
76 if (match(target, "connect")) {
89 } else if (match(target, "setsockopt")) {
96 } else if (match(target, "getsockname")) {
104 } else if (match(target, "listen")) {
110 } else if (match(target, "bind")) {
123 } else if (match(target, "shutdown")) {
130 errx(EXIT_FAILURE, "unknown target: %s", target);
    [all...]
  /src/sbin/mount_union/
mount_union.c 88 char target[MAXPATHLEN], canon_dir[MAXPATHLEN]; local in function:mount_union
117 pathadj(argv[0], target);
120 if (subdir(target, canon_dir) || subdir(canon_dir, target))
122 argv[0], target, canon_dir);
124 args.target = target;
127 err(1, "%s on %s", target, canon_dir);
  /src/sys/arch/evbppc/mpc85xx/
ds1553rtc.c 86 bus_size_t target = size - 17; local in function:ds1553rtc_match
87 saved_data = bus_space_read_1(ga->ga_bst, bsh, target);
88 bus_space_write_1(ga->ga_bst, bsh, target, ~saved_data);
89 new_data = bus_space_read_1(ga->ga_bst, bsh, target);
91 bus_space_write_1(ga->ga_bst, bsh, target, saved_data);
  /src/sys/arch/hpc/stand/hpcboot/
framebuffer.cpp 46 platid_mask_t target, entry; local in function:FrameBufferInfo::FrameBufferInfo
54 target.dw.dw0 = cpu;
55 target.dw.dw1 = machine;
60 if (platid_match(&target, &entry)) {
  /src/sys/arch/hpc/stand/hpcboot/sh3/
sh_console.cpp 54 platid_mask_t target, entry; local in function:SHConsole::selectBootConsole
56 target.dw.dw0 = HPC_PREFERENCE.platid_hi;
57 target.dw.dw1 = HPC_PREFERENCE.platid_lo;
63 if (platid_match(&target, &entry)) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/engine/
dma.h 15 u32 target; member in struct:nvkm_dmaobj
  /src/sys/external/bsd/drm2/include/radeon/
Makefile 21 default-target: all

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011