Searched defs:machine (Results 1 - 25 of 30) sorted by relevance

12

/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dutsname.h42 char machine[9]; member in struct:utsname
/illumos-gate/usr/src/cmd/mdb/common/modules/md/
H A Dmetaset.c37 char machine[1024]; local
49 if (mdb_readstr(machine, 1024,
55 machine, set_db.s_setno, addr);
/illumos-gate/usr/src/lib/libbc/libc/sys/common/
H A Duname.c49 char machine[NEW_SYS_NMLN]; member in struct:n_utsname
86 memcpy(uts->machine, n_uts.machine, SYS_NMLN);
87 if (strlen(n_uts.machine) > SYS_NMLN)
88 uts->machine[SYS_NMLN-1] = '\0';
/illumos-gate/usr/src/uts/common/sys/
H A Dutsname.h57 char machine[_SYS_NMLN]; member in struct:utsname
/illumos-gate/usr/src/lib/libbsm/common/
H A Daudit_kadmind.c54 * Given an endpt in netbuf form, return the port and machine.
61 uint32_t *machine)
77 if (machine)
78 *machine = sin4.sin_addr.s_addr;
106 uint32_t machine = 0; local
145 netbuf2pm(svc_getrpccaller(xprt), &r_port, &machine); local
152 aug_save_tid_ex(port, &machine, AU_IPv4);
58 netbuf2pm( struct netbuf *addr, in_port_t *port, uint32_t *machine) argument
H A Daudit_krb5kdc.c68 uint32_t machine; local
104 machine = r_addr ? (uint32_t)r_addr->s_addr : 0;
106 aug_save_tid_ex(port, &machine, AU_IPv4);
H A Dgeneric.c247 aug_save_tid(dev_t port, int machine) argument
251 aug_tid.at_addr[0] = machine;
255 aug_save_tid_ex(dev_t port, uint32_t *machine, uint32_t type) argument
265 aug_tid.at_addr[i] = machine[i];
/illumos-gate/usr/src/cmd/file/
H A Delf_read.h37 unsigned machine; /* e_machine */ member in struct:Elf_Info
H A Dfile.c976 print_elf_machine(int machine) argument
983 "unknown machine", /* 0 - EM_NONE */
1079 /* If new machine is added, refuse to compile until we're updated */
1081 #error "Number of known ELF machine constants has changed"
1086 if ((machine < EM_NONE) || (machine >= EM_NUM))
1087 machine = EM_NONE;
1089 str = mach_str[machine];
1130 switch (EI.machine) {
1241 /* Print machine inf
[all...]
/illumos-gate/usr/src/cmd/rpcsvc/
H A Drwall.c134 char *machine, *user, *domain; local
137 while (getnetgrent(&machine, &user, &domain)) {
138 if (machine)
139 doit(machine);
H A Drup.c43 #define MACHINELEN 15 /* length of machine name printed out */
44 #define MACHINELENMAX 128 /* maximum machine name length */
62 char *machine; member in struct:entry
74 int hflag; /* host: sort by machine name */
235 entry[curentry].machine = host;
418 printf("%*.*s ", MACHINELEN, MACHINELEN, ep->machine);
446 if (ep->machine = (char *)malloc(MACHINELENMAX + 1))
447 strcpy(ep->machine, buf);
456 return (strcmp(a->machine, b->machine));
[all...]
H A Drusers.c57 #define MACHINELEN 16 /* length of machine name printed out */
64 char *machine; member in struct:entry
71 static int hflag; /* host: sort by machine name */
283 if (strcmp(entryp->machine, host) == 0)
319 entry[curentry].machine = malloc(MACHINELEN + 1);
320 if (entry[curentry].machine == NULL) {
324 (void) strlcpy(entry[curentry].machine, name, MACHINELEN + 1);
330 entry[curentry].machine = malloc(MACHINELEN + 1);
331 if (entry[curentry].machine == NULL) {
335 (void) strlcpy(entry[curentry].machine, nam
[all...]
/illumos-gate/usr/src/cmd/bnu/
H A Duusched.c54 struct m *m, *machine();
140 (void) strncat(machine(f)->jgrade, g, strlen(g));
155 DEBUG(5, "machine: %s, ", M[num].mach);
209 machine(name) function
216 DEBUG(9, "machine(%s) called\n", name);
H A Duustat.c50 char mach[15]; /* machine name */
128 struct m *m, *machine();
321 m = machine(f);
332 (void) machine(++str); /* longer name? */
359 machine(flck + 5)->locked++;
369 /* f will contain remote machine names */
389 m = machine(f);
466 uprocessC(machine, dir, file)
467 char *machine, *dir, *file;
578 sprintf(format_tmp,"%s %s ", type, machine);
878 machine(name) function
[all...]
/illumos-gate/usr/src/lib/libcmd/common/
H A Duname.c52 "[m:machine?The name of the hardware type the system is running on.]"
125 #define SYSNAME #(getprd machine)
142 char* machine; member in struct:utsname
180 if (!(ut->machine = arch))
182 ut->machine = MACHINE;
394 output(OPT_machine, ut.machine, "machine");
398 s = ut.machine;
478 extra(machine);
/illumos-gate/usr/src/cmd/mailx/
H A Doptim.c49 static int netlook(char machine[], int attnet);
226 * Turn a network machine name into a unique character
229 netlook(char machine[], int attnet) argument
238 for (cp = machine, cp2 = nbuf;
245 * If a single letter machine, look through those first.
289 * name contains an "@" or "%". Look up the machine after it in
292 * Otherwise, delete the "@" or "%" and the machine after it from
321 fprintf(stderr, "machine %s unknown, uses: %s\n",
327 fprintf(stderr, "machine %s known but remote, uses: %s\n",
363 * Take a network machine descripto
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/libtopo/
H A Dlibtopo.c69 char uuid[36], root[36], plat[36], isa[36], machine[36], product[36]; local
94 if (mdb_readstr(machine, sizeof (machine), (uintptr_t)th.th_machine)
97 (void) mdb_snprintf(machine, sizeof (machine), "<%p>",
123 mdb_printf("%-12s %-36s %-30s\n", "th_machine", machine,
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_elf_access.c103 Dwarf_Small machine; member in struct:__anon4467
143 Dwarf_Half machine = 0; local
169 machine = obj->ehdr64->e_machine;
170 obj->machine = machine;
183 machine = obj->ehdr32->e_machine;
184 obj->machine = machine;
192 if (obj->is_64bit && machine != EM_MIPS) {
359 int machine, struc
357 get_rela_elf32(Dwarf_Small *data, unsigned int i, int endianness, int machine, struct Dwarf_Elf_Rela *relap) argument
372 get_rela_elf64(Dwarf_Small *data, unsigned int i, int endianness, int machine,struct Dwarf_Elf_Rela *relap) argument
413 get_relocations_array(Dwarf_Bool is_64bit, int endianness, int machine, Dwarf_Small *data, unsigned int num_relocations, struct Dwarf_Elf_Rela *relap) argument
441 get_relocation_entries(Dwarf_Bool is_64bit, int endianness, int machine, Dwarf_Small *relocation_section, Dwarf_Unsigned relocation_section_size, struct Dwarf_Elf_Rela **relas, unsigned int *nrelas, int *error) argument
489 is_32bit_abs_reloc(unsigned int type, Dwarf_Half machine) argument
548 is_64bit_abs_reloc(unsigned int type, Dwarf_Half machine) argument
598 update_entry(Dwarf_Debug dbg, Dwarf_Bool is_64bit, Dwarf_Endianness endianess, Dwarf_Half machine, struct Dwarf_Elf_Rela *rela, Dwarf_Small *target_section, Dwarf_Small *section_data) argument
668 apply_rela_entries(Dwarf_Debug dbg, Dwarf_Bool is_64bit, Dwarf_Endianness endianess, Dwarf_Half machine, Dwarf_Small *target_section, Dwarf_Small *symtab_section, struct Dwarf_Elf_Rela *relas, unsigned int nrelas, int *error) argument
[all...]
/illumos-gate/usr/src/uts/i86xpv/os/
H A Dxpv_panic.c117 * Pointers to machine check panic info (if any).
824 const char machine = EM_AMD64; local
826 const char machine = EM_386; local
867 (mp->hdr.e_machine != machine))
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Ddisplay_sun4v.c123 char machine[MAXSTRLEN]; local
126 if (sysinfo(SI_MACHINE, machine, sizeof (machine)) == -1)
128 if (strncmp(machine, SUN4V_MACHINE, strlen(SUN4V_MACHINE)) != 0)
134 * Now display the machine's configuration. We do this if we
146 "Oracle Corporation %s %s\n"), uts_buf.machine,
/illumos-gate/usr/src/cmd/sgs/libconv/common/
H A Delf.c361 conv_ehdr_mach(Half machine, Conv_fmt_flags_t fmt_flags, argument
364 return (conv_map_ds(ELFOSABI_NONE, EM_NONE, machine,
/illumos-gate/usr/src/boot/sys/sys/bsm/
H A Daudit.h180 u_int32_t machine; member in struct:au_tid
/illumos-gate/usr/src/cmd/auditreduce/
H A Dtoken.c915 int32_t port, machine; local
925 adrm_int32(adr, &machine, 1);
1055 int32_t machine; local
1065 adrm_int32(adr, &machine, 1);
1306 int32_t port, machine; local
1316 adrm_int32(adr, &machine, 1);
1432 int32_t machine; local
1442 adrm_int32(adr, &machine, 1);
/illumos-gate/usr/src/lib/auditd_plugins/syslog/
H A Dsystoken.c854 int32_t port, machine; local
859 adrm_int32(&(ctx->adr), &machine, 1);
912 int32_t machine; local
917 adrm_int32(&(ctx->adr), &machine, 1);
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dfiles.c57 * with this machine and our own internal elf library.
415 * Promote a machine capability or platform capability to the output file.
1819 static char *machine = NULL; variable
1878 * Establish the machine from sysconf - like uname -i.
1880 if ((machine == NULL) && (machine_sz == 0)) {
1886 (machine = libld_malloc((size_t)size))) {
1887 (void) strcpy(machine, info);
1892 if (machine) {
1896 (void) strncpy(nptr, machine, machine_sz);

Completed in 122 milliseconds

12