| /src/sys/fs/nilfs/ | 
| nilfs_mount.h | 43 	int32_t		 gmtoff;	/* offset from UTC in seconds        */  member in struct:nilfs_args 
 | 
| /src/sys/fs/udf/ | 
| udf_mount.h | 43 	int32_t		 gmtoff;	/* offset from UTC in seconds        */  member in struct:udf_args 
 | 
| udf_subr.c | 4323 		secs -= ump->mount_args.gmtoff; 
 | 
| /src/sbin/mount_nilfs/ | 
| mount_nilfs.c | 82 	    "[-t gmtoff] special node\n", getprogname()); 127 			args->gmtoff = a_num(optarg, "gmtoff");
 143 		args->gmtoff = tm->tm_gmtoff;
 173 		    args.gmtoff, args.cpno, buf);
 
 | 
| /src/sbin/mount_msdos/ | 
| mount_msdos.c | 137 			args->gmtoff = atoi(optarg); 183 		args->gmtoff = tm->tm_gmtoff;
 206 		printf("uid=%d, gid=%d, mask=0%o, dirmask=0%o, gmtoff=%d, flags=%s\n",
 208 		    args.gmtoff, buf);
 219 	    "[-o options]\n\t[-t gmtoff] [-u uid] special mountpath\n",
 
 | 
| /src/sbin/mount_udf/ | 
| mount_udf.c | 82 	    "[-t gmtoff] [-u uid] special node\n", getprogname()); 150 			args->gmtoff = a_num(optarg, "gmtoff");
 166 		args->gmtoff = tm->tm_gmtoff;
 201 		    args.gmtoff, args.sessionnr, buf);
 
 | 
| /src/sys/fs/msdosfs/ | 
| direntry.h | 131 void	msdosfs_unix2dostime(const struct timespec *tsp, int gmtoff, 134 	    int gmtoff, struct timespec *tsp);
 
 | 
| denode.h | 261 #define	DETIMES(dep, acc, mod, cre, gmtoff) \ 263 		msdosfs_detimes(dep, acc, mod, cre, gmtoff)
 
 | 
| msdosfsmount.h | 69 	int	gmtoff;		/* v3: offset from UTC in seconds */  member in struct:msdosfs_args 
 | 
| msdosfs_conv.c | 120 msdosfs_unix2dostime(const struct timespec *tsp, int gmtoff, 126 	t = tsp->tv_sec + gmtoff; /* time zone correction */
 174 msdosfs_dos2unixtime(u_int dd, u_int dt, u_int dh, int gmtoff,
 200 	tsp->tv_sec -= gmtoff;	/* time zone correction */
 
 | 
| msdosfs_vnops.c | 1430     const struct timespec *mod, const struct timespec *cre, int gmtoff) 1442 		msdosfs_unix2dostime(mod, gmtoff, &dep->de_MDate,
 1451 			msdosfs_unix2dostime(acc, gmtoff, &dep->de_ADate,
 1458 			msdosfs_unix2dostime(cre, gmtoff, &dep->de_CDate,
 
 | 
| msdosfs_vfsops.c | 192 	pmp->pm_gmtoff = argp->gmtoff; 303 		args->gmtoff = pmp->pm_gmtoff;
 321 		args->gmtoff = 0;
 
 | 
| /src/usr.bin/mail/ | 
| format.c | 470  * gmtoff string. 477 		const char *gmtoff;  member in struct:convert_obs_zone::obs_zone_tbl_s
 518 			return zp->gmtoff;
 524  * Parse the 'Date:" field into a tm structure and return the gmtoff
 624 	/* what remains should be the gmtoff string */
 693  * Note: We return the gmtoff as a string as "-0000" has special
 701 	const char *gmtoff;  local in function:dateof
 733 	    (gmtoff = date_to_tm(date, tm)) != NULL) {
 740 		 * Scan the gmtoff and use it to convert the time to a
 752 		if (strcmp(gmtoff, "-0000") != 0 &
 [all...]
 | 
| /src/sbin/newfs_udf/ | 
| newfs_udf.c | 134 	    "[-t gmtoff] [-v min_udf] [-V max_udf] special\n", getprogname()); 175 	context.gmtoff = tm->tm_gmtoff;
 243 			context.gmtoff = a_num(optarg, "gmtoff");
 
 | 
| udf_core.h | 166 	int	 gmtoff;		/* in minutes	             */  member in struct:udf_create_context 
 | 
| udf_core.c | 116 	context.gmtoff        = 0; 
 | 
| /src/sys/compat/netbsd32/ | 
| netbsd32_fs.c | 925 			fs_args.msdosfs_args.gmtoff = 926 			    fs_args32.msdosfs_args.gmtoff;
 947 			fs_args.udf_args.gmtoff =
 948 			    fs_args32.udf_args.gmtoff;
 1084 			fs_args32.udf_args.gmtoff =
 1085 			    fs_args.udf_args.gmtoff;
 
 | 
| netbsd32.h | 1162 	int	gmtoff;		/* v3: offset from UTC in seconds */  member in struct:netbsd32_msdosfs_args 1171 	int32_t		 gmtoff;	/* offset from UTC in seconds        */  member in struct:netbsd32_udf_args
 
 | 
| /src/lib/libc/time/ | 
| zdump.c | 811 gmtoff(struct tm const *a, ATTRIBUTE_MAYBE_UNUSED time_t *t,  function in typeref:typename:long 862 			long off = gmtoff(tmp, NULL,  gmtmp);
 865 				(void) printf(" gmtoff=%ld", off);
 985   long off = gmtoff(tm, &t, NULL);
 
 | 
| /src/usr.sbin/makefs/ | 
| udf.c | 123 		OPT_NUM('t', "tz", gmtoff, -24, 24, "timezone"), 166 		context.gmtoff = tm.tm_gmtoff;
 169 		context.gmtoff = 0;
 
 |