Searched refs:mode (Results 1 - 25 of 1589) sorted by path

1234567891011>>

/illumos-gate/usr/src/boot/include/isofs/cd9660/
H A Dcd9660_rrip.h46 char mode [ISODCL ( 4, 11)]; /* 733 */ member in struct:__anon11
/illumos-gate/usr/src/boot/include/ufs/ufs/
H A Ddir.h100 #define IFTODT(mode) (((mode) & 0170000) >> 12)
/illumos-gate/usr/src/boot/lib/libstand/
H A Dnfs.c734 n_long ftype, mode; local
737 mode = ntohl(fp->fa.fa_mode);
738 mode |= nfs_stat_types[ftype & 7];
740 sb->st_mode = mode;
1383 uint32_t ftype, mode; local
1386 mode = ntohl(fp->fa.fa_mode);
1387 mode |= nfs_stat_types[ftype & 7];
1389 sb->st_mode = mode;
H A Dopen.c92 open(const char *fname, int mode) argument
105 f->f_flags = mode + 1;
/illumos-gate/usr/src/boot/lib/libz/
H A Dgzclose.c21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
H A Dgzguts.h153 #define GZ_APPEND 1 /* mode set to GZ_WRITE after the file is opened */
168 int mode; /* see gzip modes above */ member in struct:__anon107
H A Dgzlib.c82 if (state->mode == GZ_READ) { /* for reading ... */
94 local gzFile gz_open(path, fd, mode)
97 const char *mode;
121 /* interpret mode */
122 state->mode = GZ_NONE;
126 while (*mode) {
127 if (*mode >= '0' && *mode <= '9')
128 state->level = *mode - '0';
130 switch (*mode) {
[all...]
H A Dgzread.c307 if (state->mode != GZ_READ ||
403 if (state->mode != GZ_READ ||
438 if (state->mode != GZ_READ ||
502 if (state->mode != GZ_READ ||
562 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0)
582 if (state->mode != GZ_READ)
H A Dgzwrite.c184 if (state->mode != GZ_WRITE || state->err != Z_OK)
264 if (state->mode != GZ_WRITE || state->err != Z_OK)
326 if (state->mode != GZ_WRITE || state->err != Z_OK)
411 if (state->mode != GZ_WRITE || state->err != Z_OK)
480 if (state->mode != GZ_WRITE || state->err != Z_OK)
515 if (state->mode != GZ_WRITE || state->err != Z_OK)
554 if (state->mode != GZ_WRITE)
H A Dinfback.c279 state->mode = TYPE;
291 switch (state->mode) {
296 state->mode = DONE;
306 state->mode = STORED;
312 state->mode = LEN; /* decode codes */
317 state->mode = TABLE;
321 state->mode = BAD;
332 state->mode = BAD;
355 state->mode = TYPE;
370 state->mode
[all...]
H A Dinffast.c42 state->mode == LEN
48 On return, state->mode is one of:
179 state->mode = BAD;
193 state->mode = BAD;
289 state->mode = BAD;
299 state->mode = TYPE;
304 state->mode = BAD;
H A Dinflate.c115 state->mode = HEAD;
633 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
639 switch (state->mode) {
642 state->mode = TYPEDO;
651 state->mode = FLAGS;
663 state->mode = BAD;
668 state->mode = BAD;
677 state->mode = BAD;
683 state->mode
[all...]
H A Dinflate.h82 inflate_mode mode; /* current inflate mode */ member in struct:inflate_state
H A Dzlib.h1227 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1229 Opens a gzip (.gz) file for reading or writing. The mode parameter is as
1258 insufficient memory to allocate the gzFile state, or if an invalid mode was
1264 ZEXTERN gzFile ZEXPORT gzdopen OF((int fd, const char *mode));
1268 has been previously opened with fopen). The mode parameter is as in gzopen.
1271 descriptor fd, just like fclose(fdopen(fd, mode)) closes the file descriptor
1273 mode);. The duplicated descriptor should be saved to avoid a leak, since
1281 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1504 requested ("wT" for the gzopen() mode), or false (0) otherwise. (Note:
1754 const char *mode));
[all...]
H A Dzopen.c11 FILE *zopen(const char *fname, const char *mode);
39 zopen(const char *fname, const char *mode) argument
41 gzFile gz = gzopen(fname, mode);
45 if(*mode == 'r')
H A Dzutil.h106 # define F_OPEN(name, mode) \
107 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
128 # define fdopen(fd,mode) NULL /* No fdopen() */
149 # define fdopen(fd,mode) NULL /* No fdopen() */
154 # define fdopen(fd,mode) NULL /* No fdopen() */
184 # define F_OPEN(name, mode) fopen((name), (mode))
/illumos-gate/usr/src/boot/lib/libz/test/
H A Dinfcover.c330 ((struct inflate_state *)strm.state)->mode = DICT;
459 state->mode = SYNC; /* force an otherwise impossible situation */
495 /* force mode error by mucking with state */
H A Dminigzip.c13 * or in pipe mode.
182 gzFile gzopen(path, mode)
184 const char *mode;
186 return gz_open(path, -1, mode);
189 gzFile gzdopen(fd, mode)
191 const char *mode;
193 return gz_open(NULL, fd, mode);
196 gzFile gz_open(path, fd, mode)
199 const char *mode;
207 gz->write = strchr(mode, '
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Definet.c67 dump_mode(EFI_SIMPLE_NETWORK_MODE *mode) argument
71 printf("State = %x\n", mode->State);
72 printf("HwAddressSize = %u\n", mode->HwAddressSize);
73 printf("MediaHeaderSize = %u\n", mode->MediaHeaderSize);
74 printf("MaxPacketSize = %u\n", mode->MaxPacketSize);
75 printf("NvRamSize = %u\n", mode->NvRamSize);
76 printf("NvRamAccessSize = %u\n", mode->NvRamAccessSize);
77 printf("ReceiveFilterMask = %x\n", mode->ReceiveFilterMask);
78 printf("ReceiveFilterSetting = %u\n", mode->ReceiveFilterSetting);
79 printf("MaxMCastFilterCount = %u\n", mode
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/arch/amd64/
H A Dframebuffer.c97 efifb_from_gop(struct efi_fb *efifb, EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE *mode, argument
102 efifb->fb_addr = mode->FrameBufferBase;
103 efifb->fb_size = mode->FrameBufferSize;
447 print_efifb(int mode, struct efi_fb *efifb, int verbose) argument
451 if (mode >= 0)
452 printf("mode %d: ", mode);
473 u_int mode; local
491 mode = strtol(argv[2], &cp, 0);
493 sprintf(command_errbuf, "mode i
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Dmain.c592 COMMAND_SET(mode, "mode", "change or display EFI text modes", command_mode);
598 unsigned int mode; local
609 mode = strtol(argv[1], &cp, 0);
611 printf("Invalid mode\n");
614 status = conout->QueryMode(conout, mode, &cols, &rows);
616 printf("invalid mode %d\n", mode);
619 status = conout->SetMode(conout, mode);
621 printf("couldn't set mode
[all...]
/illumos-gate/usr/src/boot/sys/boot/fdt/dts/arm/
H A Dapalis-imx6.dts82 phy-mode = "rgmii";
H A Darmada-388-gp.dts134 phy-mode = "rgmii-id";
153 phy-mode = "rgmii-id";
H A Dbananapi.dts68 phy-mode = "rgmii-bpi";
H A Ddigi-ccwmx53.dts124 phy-mode = "rmii";

Completed in 185 milliseconds

1234567891011>>