Home
last modified time | relevance | path

Searched refs:initname (Results 1 – 4 of 4) sorted by relevance

/NextBSD/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
HDtst.func_access.ksh46 BEGIN { x = alloca(10); bcopy(`initname, x, 10); trace(stringof(x)); }
49 BEGIN { trace(strlen(`initname)); }
50 BEGIN { trace(strchr(`initname, 0x69)); }
51 BEGIN { trace(strrchr(`initname, 0x69)); }
52 BEGIN { trace(strstr("/sbin/init/foo", `initname)); }
53 BEGIN { trace(strstr(`initname, "in")); }
54 BEGIN { trace(strtok(`initname, "/")); }
56 BEGIN { trace(strtok("foo/bar", `initname)); }
57 BEGIN { trace(strtok(NULL, `initname)); }
58 BEGIN { trace(strtoll(`initname)); }
[all …]
HDtst.op_access.ksh41 BEGIN /`initname == "/sbin/init"/ { trace("bad"); }
50 BEGIN { a[stringof(`initname)] = 42; trace(a["/sbin/init"]); }
53 BEGIN { self->a[stringof(`initname)] = 42; trace(self->a["/sbin/init"]); }
/NextBSD/lib/libutil/
HDquotafile.c72 static char initname, usrname[100], grpname[100]; in hasquota() local
78 if (!initname) { in hasquota()
83 initname = 1; in hasquota()
/NextBSD/contrib/gcc/
HDcollect2.c196 static char *initname, *fininame; /* names of init and fini funcs */ variable
1404 *ld2++ = concat (LD_INIT_SWITCH, ":", initname, ":", fininame, NULL); in main()
1407 *ld2++ = initname; in main()
1422 add_to_list (&exports, initname); in main()
1814 initname = concat ("_GLOBAL__FI_", prefix, NULL); in write_c_file_stat()
1856 fprintf (stream, "void %s() {\n", initname); in write_c_file_stat()
1891 COLLECT_SHARED_INIT_FUNC(stream, initname); in write_c_file_stat()