offset 95 examples/VFS/skel_opaque.c static void skel_seekdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset)
offset 97 examples/VFS/skel_opaque.c vfswrap_seekdir(NULL, dirp, offset);
offset 140 examples/VFS/skel_opaque.c static ssize_t skel_pread(vfs_handle_struct *handle, struct files_struct *fsp, void *data, size_t n, SMB_OFF_T offset)
offset 142 examples/VFS/skel_opaque.c return vfswrap_pread(NULL, fsp, data, n, offset);
offset 150 examples/VFS/skel_opaque.c ssize_t skel_pwrite(vfs_handle_struct *handle, struct files_struct *fsp, const void *data, size_t n, SMB_OFF_T offset)
offset 152 examples/VFS/skel_opaque.c return vfswrap_pwrite(NULL, fsp, data, n, offset);
offset 155 examples/VFS/skel_opaque.c static SMB_OFF_T skel_lseek(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T offset, int whence)
offset 157 examples/VFS/skel_opaque.c return vfswrap_lseek(NULL, fsp, offset, whence);
offset 161 examples/VFS/skel_opaque.c SMB_OFF_T offset, size_t n)
offset 163 examples/VFS/skel_opaque.c return vfswrap_sendfile(NULL, tofd, fromfsp, hdr, offset, n);
offset 166 examples/VFS/skel_opaque.c static ssize_t skel_recvfile(vfs_handle_struct *handle, int fromfd, files_struct *tofsp, SMB_OFF_T offset, size_t n)
offset 168 examples/VFS/skel_opaque.c return vfswrap_recvfile(NULL, fromfd, tofsp, offset, n);
offset 241 examples/VFS/skel_opaque.c static int skel_ftruncate(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T offset)
offset 243 examples/VFS/skel_opaque.c return vfswrap_ftruncate(NULL, fsp, offset);
offset 246 examples/VFS/skel_opaque.c static bool skel_lock(vfs_handle_struct *handle, files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
offset 248 examples/VFS/skel_opaque.c return vfswrap_lock(NULL, fsp, op, offset, count, type);
offset 89 examples/VFS/skel_transparent.c static void skel_seekdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset)
offset 91 examples/VFS/skel_transparent.c return SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
offset 134 examples/VFS/skel_transparent.c static ssize_t skel_pread(vfs_handle_struct *handle, files_struct *fsp, void *data, size_t n, SMB_OFF_T offset)
offset 136 examples/VFS/skel_transparent.c return SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
offset 144 examples/VFS/skel_transparent.c static ssize_t skel_pwrite(vfs_handle_struct *handle, files_struct *fsp, const void *data, size_t n, SMB_OFF_T offset)
offset 146 examples/VFS/skel_transparent.c return SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
offset 149 examples/VFS/skel_transparent.c static SMB_OFF_T skel_lseek(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T offset, int whence)
offset 151 examples/VFS/skel_transparent.c return SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
offset 154 examples/VFS/skel_transparent.c static ssize_t skel_sendfile(vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *hdr, SMB_OFF_T offset, size_t n)
offset 156 examples/VFS/skel_transparent.c return SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
offset 159 examples/VFS/skel_transparent.c static ssize_t skel_recvfile(vfs_handle_struct *handle, int fromfd, files_struct *tofsp, SMB_OFF_T offset, size_t n)
offset 161 examples/VFS/skel_transparent.c return SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
offset 234 examples/VFS/skel_transparent.c static int skel_ftruncate(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T offset)
offset 236 examples/VFS/skel_transparent.c return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
offset 239 examples/VFS/skel_transparent.c static bool skel_lock(vfs_handle_struct *handle, files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
offset 241 examples/VFS/skel_transparent.c return SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
offset 647 examples/libsmbclient/smbwrapper/smbw.c SMBW_OFF_T offset,
offset 655 examples/libsmbclient/smbwrapper/smbw.c ret = smbc_lseek(client_fd, offset, whence);
offset 660 examples/libsmbclient/smbwrapper/smbw.c (unsigned long long) offset,
offset 88 examples/libsmbclient/smbwrapper/smbw.h SMBW_OFF_T smbw_lseek(int smbw_fd, SMBW_OFF_T offset, int whence);
offset 111 examples/libsmbclient/smbwrapper/smbw.h void smbw_seekdir(DIR *dirp, long long offset);
offset 338 examples/libsmbclient/smbwrapper/smbw_dir.c void smbw_seekdir(DIR *dirp, long long offset)
offset 343 examples/libsmbclient/smbwrapper/smbw_dir.c smbc_lseekdir(fd_client, offset);
offset 479 examples/libsmbclient/smbwrapper/wrapper.c off_t offset,
offset 494 examples/libsmbclient/smbwrapper/wrapper.c return (off_t) smbw_lseek(fd, offset, whence);
offset 497 examples/libsmbclient/smbwrapper/wrapper.c ret = (* f)(fd, offset, whence);
offset 502 examples/libsmbclient/smbwrapper/wrapper.c (unsigned long long) offset,
offset 509 examples/libsmbclient/smbwrapper/wrapper.c off64_t offset,
offset 524 examples/libsmbclient/smbwrapper/wrapper.c ret = smbw_lseek(fd, offset, whence);
offset 526 examples/libsmbclient/smbwrapper/wrapper.c ret = (* f)(fd, offset, whence);
offset 531 examples/libsmbclient/smbwrapper/wrapper.c (unsigned long long) offset,
offset 804 examples/libsmbclient/smbwrapper/wrapper.c off_t lseek(int fd, off_t offset, int whence)
offset 808 examples/libsmbclient/smbwrapper/wrapper.c ret = lseekx(fd, offset, whence, smbw_libc.lseek);
offset 813 examples/libsmbclient/smbwrapper/wrapper.c (unsigned long long) offset,
offset 819 examples/libsmbclient/smbwrapper/wrapper.c off_t __lseek(int fd, off_t offset, int whence)
offset 823 examples/libsmbclient/smbwrapper/wrapper.c ret = lseekx(fd, offset, whence, smbw_libc.__lseek);
offset 828 examples/libsmbclient/smbwrapper/wrapper.c (unsigned long long) offset,
offset 834 examples/libsmbclient/smbwrapper/wrapper.c off_t _lseek(int fd, off_t offset, int whence)
offset 838 examples/libsmbclient/smbwrapper/wrapper.c ret = lseekx(fd, offset, whence, smbw_libc._lseek);
offset 843 examples/libsmbclient/smbwrapper/wrapper.c (unsigned long long) offset,
offset 849 examples/libsmbclient/smbwrapper/wrapper.c off64_t lseek64(int fd, off64_t offset, int whence)
offset 853 examples/libsmbclient/smbwrapper/wrapper.c ret = lseek64x(fd, offset, whence, smbw_libc.lseek64);
offset 858 examples/libsmbclient/smbwrapper/wrapper.c (unsigned long long) offset,
offset 864 examples/libsmbclient/smbwrapper/wrapper.c off64_t __lseek64(int fd, off64_t offset, int whence)
offset 867 examples/libsmbclient/smbwrapper/wrapper.c return lseek64x(fd, offset, whence, smbw_libc.__lseek64);
offset 870 examples/libsmbclient/smbwrapper/wrapper.c off64_t _lseek64(int fd, off64_t offset, int whence)
offset 874 examples/libsmbclient/smbwrapper/wrapper.c ret = lseek64x(fd, offset, whence, smbw_libc._lseek64);
offset 879 examples/libsmbclient/smbwrapper/wrapper.c (unsigned long long) offset,
offset 1247 examples/libsmbclient/smbwrapper/wrapper.c void seekdir(DIR *dir, long offset)
offset 1252 examples/libsmbclient/smbwrapper/wrapper.c smbw_seekdir(dir, (long long) offset);
offset 1256 examples/libsmbclient/smbwrapper/wrapper.c (* smbw_libc.seekdir)(dir, offset);
offset 98 examples/libsmbclient/smbwrapper/wrapper.h off_t (* lseek)(int fd, off_t offset, int whence);
offset 99 examples/libsmbclient/smbwrapper/wrapper.h off_t (* __lseek)(int fd, off_t offset, int whence);
offset 100 examples/libsmbclient/smbwrapper/wrapper.h off_t (* _lseek)(int fd, off_t offset, int whence);
offset 101 examples/libsmbclient/smbwrapper/wrapper.h off64_t (* lseek64)(int fd, off64_t offset, int whence);
offset 102 examples/libsmbclient/smbwrapper/wrapper.h off64_t (* __lseek64)(int fd, off64_t offset, int whence);
offset 103 examples/libsmbclient/smbwrapper/wrapper.h off64_t (* _lseek64)(int fd, off64_t offset, int whence);
offset 135 examples/libsmbclient/smbwrapper/wrapper.h void (* seekdir)(DIR *dir, off_t offset);
offset 710 examples/pcap2nbench/main.cpp << i->read_req.offset << " "
offset 721 examples/pcap2nbench/main.cpp << i->write_req.offset << " "
offset 36 examples/pcap2nbench/readandxrequest.cpp memcpy(&offset, data + 7, 4);
offset 52 examples/pcap2nbench/readandxrequest.cpp << "Offset: " << rhs.offset << std::endl
offset 40 examples/pcap2nbench/readandxrequest.hpp uint32_t offset;
offset 36 examples/pcap2nbench/writeandxrequest.cpp memcpy(&offset, data + 7, 4);
offset 55 examples/pcap2nbench/writeandxrequest.cpp << "Offset: " << rhs.offset << std::endl
offset 40 examples/pcap2nbench/writeandxrequest.hpp uint32_t offset;
offset 66 lib/compression/lzxpress.c int32_t offset;
offset 106 lib/compression/lzxpress.c for (offset = 1; (uint32_t)offset <= max_offset; offset++) {
offset 107 lib/compression/lzxpress.c str2 = &str1[-offset];
offset 121 lib/compression/lzxpress.c best_offset = offset;
offset 241 lib/compression/lzxpress.c uint32_t offset;
offset 249 lib/compression/lzxpress.c offset = 0;
offset 272 lib/compression/lzxpress.c offset = length / 8;
offset 301 lib/compression/lzxpress.c if ((output_index >= max_output_size) || ((offset + 1) > output_index)) break;
offset 303 lib/compression/lzxpress.c output[output_index] = output[output_index - offset - 1];
offset 72 lib/compression/mszip.c uint32_t offset; /* uncompressed offset within folder */
offset 194 lib/crypto/sha256.c size_t offset;
offset 199 lib/crypto/sha256.c offset = (old_sz / 8) % 64;
offset 201 lib/crypto/sha256.c size_t l = MIN(len, 64 - offset);
offset 202 lib/crypto/sha256.c memcpy(m->save + offset, p, l);
offset 203 lib/crypto/sha256.c offset += l;
offset 206 lib/crypto/sha256.c if(offset == 64){
offset 219 lib/crypto/sha256.c offset = 0;
offset 228 lib/crypto/sha256.c unsigned offset = (m->sz[0] / 8) % 64;
offset 229 lib/crypto/sha256.c unsigned int dstart = (120 - offset - 1) % 64 + 1;
offset 945 lib/replace/strptime.c + ((tm->tm_year - era->offset)
offset 31 lib/tdb/common/dump.c tdb_off_t offset)
offset 36 lib/tdb/common/dump.c if (tdb->methods->tdb_read(tdb, offset, (char *)&rec,
offset 38 lib/tdb/common/dump.c printf("ERROR: failed to read record at %u\n", offset);
offset 44 lib/tdb/common/dump.c hash, offset, rec.next, rec.rec_len, rec.key_len, rec.data_len,
offset 47 lib/tdb/common/dump.c tailer_ofs = offset + sizeof(rec) + rec.rec_len - sizeof(tdb_off_t);
offset 97 lib/tdb/common/dump.c tdb_off_t offset, rec_ptr;
offset 103 lib/tdb/common/dump.c offset = FREELIST_TOP;
offset 106 lib/tdb/common/dump.c if (tdb_ofs_read(tdb, offset, &rec_ptr) == -1) {
offset 88 lib/tdb/common/freelist.c static int update_tailer(struct tdb_context *tdb, tdb_off_t offset,
offset 95 lib/tdb/common/freelist.c return tdb_ofs_write(tdb, offset + totalsize - sizeof(tdb_off_t),
offset 101 lib/tdb/common/freelist.c int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec)
offset 108 lib/tdb/common/freelist.c if (update_tailer(tdb, offset, rec) != 0) {
offset 115 lib/tdb/common/freelist.c if (offset + sizeof(*rec) + rec->rec_len + sizeof(*rec) <= tdb->map_size) {
offset 116 lib/tdb/common/freelist.c tdb_off_t right = offset + sizeof(*rec) + rec->rec_len;
offset 131 lib/tdb/common/freelist.c if (update_tailer(tdb, offset, rec) == -1) {
offset 132 lib/tdb/common/freelist.c TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_free: update_tailer failed at %u\n", offset));
offset 141 lib/tdb/common/freelist.c if (offset - sizeof(tdb_off_t) > TDB_DATA_START(tdb->header.hash_size)) {
offset 142 lib/tdb/common/freelist.c tdb_off_t left = offset - sizeof(tdb_off_t);
offset 157 lib/tdb/common/freelist.c left = offset - leftsize;
offset 159 lib/tdb/common/freelist.c if (leftsize > offset ||
offset 181 lib/tdb/common/freelist.c TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_free: update_tailer failed at %u\n", offset));
offset 195 lib/tdb/common/freelist.c tdb_rec_write(tdb, offset, rec) == -1 ||
offset 196 lib/tdb/common/freelist.c tdb_ofs_write(tdb, FREELIST_TOP, &offset) == -1) {
offset 197 lib/tdb/common/freelist.c TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_free record write failed at offset=%d\n", offset));
offset 299 lib/tdb/common/io.c tdb_off_t offset, new_size;
offset 356 lib/tdb/common/io.c offset = tdb->map_size - size;
offset 357 lib/tdb/common/io.c if (tdb_free(tdb, offset, &rec) == -1)
offset 368 lib/tdb/common/io.c int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d)
offset 370 lib/tdb/common/io.c return tdb->methods->tdb_read(tdb, offset, (char*)d, sizeof(*d), DOCONV());
offset 373 lib/tdb/common/io.c int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d)
offset 376 lib/tdb/common/io.c return tdb->methods->tdb_write(tdb, offset, CONVERT(off), sizeof(*d));
offset 381 lib/tdb/common/io.c unsigned char *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len)
offset 397 lib/tdb/common/io.c if (tdb->methods->tdb_read(tdb, offset, buf, len, 0) == -1) {
offset 407 lib/tdb/common/io.c tdb_off_t offset, tdb_len_t len,
offset 422 lib/tdb/common/io.c if (tdb->methods->tdb_oob(tdb, offset+len, 0) != 0) {
offset 425 lib/tdb/common/io.c data.dptr = offset + (unsigned char *)tdb->map_ptr;
offset 429 lib/tdb/common/io.c if (!(data.dptr = tdb_alloc_read(tdb, offset, len))) {
offset 439 lib/tdb/common/io.c int tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec)
offset 441 lib/tdb/common/io.c if (tdb->methods->tdb_read(tdb, offset, rec, sizeof(*rec),DOCONV()) == -1)
offset 446 lib/tdb/common/io.c TDB_LOG((tdb, TDB_DEBUG_FATAL,"tdb_rec_read bad magic 0x%x at offset=%d\n", rec->magic, offset));
offset 452 lib/tdb/common/io.c int tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec)
offset 455 lib/tdb/common/io.c return tdb->methods->tdb_write(tdb, offset, CONVERT(r), sizeof(r));
offset 45 lib/tdb/common/lock.c int tdb_brlock(struct tdb_context *tdb, tdb_off_t offset,
offset 62 lib/tdb/common/lock.c fl.l_start = offset;
offset 85 lib/tdb/common/lock.c tdb->fd, offset, rw_type, lck_type, (int)len));
offset 99 lib/tdb/common/lock.c int tdb_brlock_upgrade(struct tdb_context *tdb, tdb_off_t offset, size_t len)
offset 104 lib/tdb/common/lock.c if (tdb_brlock(tdb, offset, F_WRLCK, F_SETLKW, 1, len) == 0) {
offset 115 lib/tdb/common/lock.c TDB_LOG((tdb, TDB_DEBUG_TRACE,"tdb_brlock_upgrade failed at offset %d\n", offset));
offset 698 lib/tdb/common/tdb.c static int tdb_free_region(struct tdb_context *tdb, tdb_off_t offset, ssize_t length)
offset 705 lib/tdb/common/tdb.c if (length + offset > tdb->map_size) {
offset 711 lib/tdb/common/tdb.c if (tdb_free(tdb, offset, &rec) == -1) {
offset 728 lib/tdb/common/tdb.c tdb_off_t offset = 0;
offset 757 lib/tdb/common/tdb.c if (tdb_ofs_write(tdb, TDB_HASH_TOP(i), &offset) == -1) {
offset 764 lib/tdb/common/tdb.c if (tdb_ofs_write(tdb, FREELIST_TOP, &offset) == -1) {
offset 182 lib/tdb/common/tdb_private.h int tdb_brlock(struct tdb_context *tdb, tdb_off_t offset, int rw_type, int lck_type, int probe, size_t len);
offset 185 lib/tdb/common/tdb_private.h int tdb_brlock_upgrade(struct tdb_context *tdb, tdb_off_t offset, size_t len);
offset 188 lib/tdb/common/tdb_private.h int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
offset 189 lib/tdb/common/tdb_private.h int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
offset 191 lib/tdb/common/tdb_private.h int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
offset 193 lib/tdb/common/tdb_private.h int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
offset 194 lib/tdb/common/tdb_private.h int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
offset 197 lib/tdb/common/tdb_private.h int tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
offset 198 lib/tdb/common/tdb_private.h int tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
offset 200 lib/tdb/common/tdb_private.h unsigned char *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
offset 202 lib/tdb/common/tdb_private.h tdb_off_t offset, tdb_len_t len,
offset 381 lib/tdb/common/transaction.c static int transaction_brlock(struct tdb_context *tdb, tdb_off_t offset,
offset 559 lib/tdb/common/transaction.c static int transaction_sync(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t length)
offset 568 lib/tdb/common/transaction.c tdb_off_t moffset = offset & ~(tdb->page_size-1);
offset 570 lib/tdb/common/transaction.c length + (offset - moffset), MS_SYNC) != 0) {
offset 737 lib/tdb/common/transaction.c tdb_off_t offset;
offset 744 lib/tdb/common/transaction.c offset = i * tdb->transaction->block_size;
offset 750 lib/tdb/common/transaction.c if (offset >= old_map_size) {
offset 753 lib/tdb/common/transaction.c if (offset + length > tdb->transaction->old_map_size) {
offset 759 lib/tdb/common/transaction.c memcpy(p, &offset, 4);
offset 767 lib/tdb/common/transaction.c if (methods->tdb_read(tdb, offset, p + 8, length, 0) != 0) {
offset 917 lib/tdb/common/transaction.c tdb_off_t offset;
offset 924 lib/tdb/common/transaction.c offset = i * tdb->transaction->block_size;
offset 930 lib/tdb/common/transaction.c if (methods->tdb_write(tdb, offset, tdb->transaction->blocks[i], length) == -1) {
offset 214 lib/util/time.c _PUBLIC_ void push_dos_date(uint8_t *buf, int offset, time_t unixdate, int zone_offset)
offset 217 lib/util/time.c SIVAL(buf,offset,x);
offset 224 lib/util/time.c _PUBLIC_ void push_dos_date2(uint8_t *buf,int offset,time_t unixdate, int zone_offset)
offset 229 lib/util/time.c SIVAL(buf,offset,x);
offset 237 lib/util/time.c _PUBLIC_ void push_dos_date3(uint8_t *buf,int offset,time_t unixdate, int zone_offset)
offset 242 lib/util/time.c SIVAL(buf,offset,unixdate);
offset 393 lib/util/time.c _PUBLIC_ void push_nttime(uint8_t *base, uint16_t offset, NTTIME t)
offset 395 lib/util/time.c SBVAL(base, offset, t);
offset 401 lib/util/time.c _PUBLIC_ NTTIME pull_nttime(uint8_t *base, uint16_t offset)
offset 403 lib/util/time.c NTTIME ret = BVAL(base, offset);
offset 65 lib/util/time.h _PUBLIC_ void push_dos_date(uint8_t *buf, int offset, time_t unixdate, int zone_offset);
offset 71 lib/util/time.h _PUBLIC_ void push_dos_date2(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
offset 78 lib/util/time.h _PUBLIC_ void push_dos_date3(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
offset 115 lib/util/time.h _PUBLIC_ void push_nttime(uint8_t *base, uint16_t offset, NTTIME t);
offset 120 lib/util/time.h _PUBLIC_ NTTIME pull_nttime(uint8_t *base, uint16_t offset);
offset 238 lib/util/util.c _PUBLIC_ bool fcntl_lock(int fd, int op, off_t offset, off_t count, int type)
offset 243 lib/util/util.c DEBUG(8,("fcntl_lock %d %d %.0f %.0f %d\n",fd,op,(double)offset,(double)count,type));
offset 247 lib/util/util.c lock.l_start = offset;
offset 273 lib/util/util.c (double)offset,(double)count,op,type,strerror(errno)));
offset 604 lib/util/util.h _PUBLIC_ bool fcntl_lock(int fd, int op, off_t offset, off_t count, int type);
offset 116 lib/util/util_file.c ssize_t alloc_size = 0, offset = 0, ret;
offset 129 lib/util/util_file.c ret = read(fd, data + offset, hint);
offset 142 lib/util/util_file.c if (data[offset + p] == '\n')
offset 147 lib/util/util_file.c data[offset + p] = '\0';
offset 154 lib/util/util_file.c offset += ret;
offset 158 lib/util/util_file.c data[offset] = '\0';
offset 380 lib/util/xfile.c off_t x_tseek(XFILE *f, off_t offset, int whence)
offset 408 lib/util/xfile.c return lseek(f->fd, offset, whence);
offset 97 lib/util/xfile.h off_t x_tseek(XFILE *f, off_t offset, int whence);
offset 238 lib/zlib/contrib/infback9/infback9.c unsigned long offset; /* distance back to copy string from */
offset 537 lib/zlib/contrib/infback9/infback9.c offset = (unsigned)this.val;
offset 543 lib/zlib/contrib/infback9/infback9.c offset += BITS(extra);
offset 546 lib/zlib/contrib/infback9/infback9.c if (offset > WSIZE - (wrap ? 0: left)) {
offset 551 lib/zlib/contrib/infback9/infback9.c Tracevv((stderr, "inflate: distance %lu\n", offset));
offset 556 lib/zlib/contrib/infback9/infback9.c copy = WSIZE - offset;
offset 562 lib/zlib/contrib/infback9/infback9.c from = put - offset;
offset 56 lib/zlib/contrib/minizip/ioapi.c uLong offset,
offset 122 lib/zlib/contrib/minizip/ioapi.c long ZCALLBACK fseek_file_func (opaque, stream, offset, origin)
offset 125 lib/zlib/contrib/minizip/ioapi.c uLong offset;
offset 144 lib/zlib/contrib/minizip/ioapi.c fseek((FILE *)stream, offset, fseek_origin);
offset 42 lib/zlib/contrib/minizip/ioapi.h typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
offset 48 lib/zlib/contrib/minizip/iowin32.c uLong offset,
offset 186 lib/zlib/contrib/minizip/iowin32.c long ZCALLBACK win32_seek_file_func (opaque, stream, offset, origin)
offset 189 lib/zlib/contrib/minizip/iowin32.c uLong offset;
offset 214 lib/zlib/contrib/minizip/iowin32.c DWORD dwSet = SetFilePointer(hFile, offset, NULL, dwMoveMethod);
offset 47 lib/zlib/contrib/minizip/mztools.c int offset = 0;
offset 50 lib/zlib/contrib/minizip/mztools.c int currentOffset = offset;
offset 68 lib/zlib/contrib/minizip/mztools.c offset += 30;
offset 78 lib/zlib/contrib/minizip/mztools.c offset += fnsize;
offset 96 lib/zlib/contrib/minizip/mztools.c offset += extsize;
offset 118 lib/zlib/contrib/minizip/mztools.c offset += dataSize;
offset 226 lib/zlib/contrib/minizip/mztools.c WRITE_32(header + 16, offset); /* offset to CD */
offset 244 lib/zlib/examples/zran.c local int extract(FILE *in, struct access *index, off_t offset,
offset 260 lib/zlib/examples/zran.c while (--ret && here[1].out <= offset)
offset 286 lib/zlib/examples/zran.c offset -= here->out;
offset 291 lib/zlib/examples/zran.c if (offset == 0 && skip) { /* at offset now */
offset 296 lib/zlib/examples/zran.c if (offset > WINSIZE) { /* skip WINSIZE bytes */
offset 299 lib/zlib/examples/zran.c offset -= WINSIZE;
offset 301 lib/zlib/examples/zran.c else if (offset != 0) { /* last skip */
offset 302 lib/zlib/examples/zran.c strm.avail_out = (unsigned)offset;
offset 304 lib/zlib/examples/zran.c offset = 0;
offset 352 lib/zlib/examples/zran.c off_t offset;
offset 390 lib/zlib/examples/zran.c offset = (index->list[index->have - 1].out << 1) / 3;
offset 391 lib/zlib/examples/zran.c len = extract(in, index, offset, buf, CHUNK);
offset 397 lib/zlib/examples/zran.c fprintf(stderr, "zran: extracted %d bytes at %llu\n", len, offset);
offset 765 lib/zlib/gzio.c z_off_t ZEXPORT gzseek (file, offset, whence)
offset 767 lib/zlib/gzio.c z_off_t offset;
offset 782 lib/zlib/gzio.c offset -= s->in;
offset 784 lib/zlib/gzio.c if (offset < 0) return -1L;
offset 792 lib/zlib/gzio.c while (offset > 0) {
offset 794 lib/zlib/gzio.c if (offset < Z_BUFSIZE) size = (uInt)offset;
offset 799 lib/zlib/gzio.c offset -= size;
offset 808 lib/zlib/gzio.c offset += s->out;
offset 810 lib/zlib/gzio.c if (offset < 0) return -1L;
offset 817 lib/zlib/gzio.c if (fseek(s->file, offset, SEEK_SET) < 0) return -1L;
offset 819 lib/zlib/gzio.c s->in = s->out = offset;
offset 820 lib/zlib/gzio.c return offset;
offset 824 lib/zlib/gzio.c if (offset >= s->out) {
offset 825 lib/zlib/gzio.c offset -= s->out;
offset 831 lib/zlib/gzio.c if (offset != 0 && s->outbuf == Z_NULL) {
offset 835 lib/zlib/gzio.c if (offset && s->back != EOF) {
offset 838 lib/zlib/gzio.c offset--;
offset 841 lib/zlib/gzio.c while (offset > 0) {
offset 843 lib/zlib/gzio.c if (offset < Z_BUFSIZE) size = (int)offset;
offset 847 lib/zlib/gzio.c offset -= size;
offset 551 lib/zlib/infback.c state->offset = (unsigned)this.val;
offset 557 lib/zlib/infback.c state->offset += BITS(state->extra);
offset 560 lib/zlib/infback.c if (state->offset > state->wsize - (state->whave < state->wsize ?
offset 566 lib/zlib/infback.c Tracevv((stderr, "inflate: distance %u\n", state->offset));
offset 571 lib/zlib/infback.c copy = state->wsize - state->offset;
offset 577 lib/zlib/infback.c from = put - state->offset;
offset 1023 lib/zlib/inflate.c state->offset = (unsigned)this.val;
offset 1029 lib/zlib/inflate.c state->offset += BITS(state->extra);
offset 1033 lib/zlib/inflate.c if (state->offset > state->dmax) {
offset 1039 lib/zlib/inflate.c if (state->offset > state->whave + out - left) {
offset 1044 lib/zlib/inflate.c Tracevv((stderr, "inflate: distance %u\n", state->offset));
offset 1049 lib/zlib/inflate.c if (state->offset > copy) { /* copy from window */
offset 1050 lib/zlib/inflate.c copy = state->offset - copy;
offset 1060 lib/zlib/inflate.c from = put - state->offset;
offset 98 lib/zlib/inflate.h unsigned offset; /* distance back to copy string from */
offset 1201 lib/zlib/zlib.h z_off_t offset, int whence));
offset 47 libcli/nbt/nbtname.c uint32_t *offset,
offset 53 libcli/nbt/nbtname.c if (*offset >= ndr->data_size) {
offset 57 libcli/nbt/nbtname.c len = ndr->data[*offset];
offset 59 libcli/nbt/nbtname.c *offset += 1;
offset 60 libcli/nbt/nbtname.c *max_offset = MAX(*max_offset, *offset);
offset 66 libcli/nbt/nbtname.c if (1 + *offset >= ndr->data_size) {
offset 70 libcli/nbt/nbtname.c *max_offset = MAX(*max_offset, *offset + 2);
offset 71 libcli/nbt/nbtname.c *offset = ((len&0x3F)<<8) | ndr->data[1 + *offset];
offset 72 libcli/nbt/nbtname.c *max_offset = MAX(*max_offset, *offset);
offset 81 libcli/nbt/nbtname.c if (*offset + len + 2 > ndr->data_size) {
offset 85 libcli/nbt/nbtname.c *component = (uint8_t*)talloc_strndup(ndr, (const char *)&ndr->data[1 + *offset], len);
offset 87 libcli/nbt/nbtname.c *offset += len + 1;
offset 88 libcli/nbt/nbtname.c *max_offset = MAX(*max_offset, *offset);
offset 101 libcli/nbt/nbtname.c uint32_t offset = ndr->offset;
offset 102 libcli/nbt/nbtname.c uint32_t max_offset = offset;
offset 115 libcli/nbt/nbtname.c NDR_CHECK(ndr_pull_component(ndr, &component, &offset, &max_offset));
offset 134 libcli/nbt/nbtname.c ndr->offset = max_offset;
offset 152 libcli/nbt/nbtname.c uint32_t offset;
offset 157 libcli/nbt/nbtname.c ndr_err = ndr_token_retrieve_cmp_fn(&ndr->nbt_string_list, s, &offset, (comparison_fn_t)strcmp, false);
offset 161 libcli/nbt/nbtname.c if (offset > 0x3FFF) {
offset 164 libcli/nbt/nbtname.c offset, offset);
offset 167 libcli/nbt/nbtname.c b[0] = 0xC0 | (offset>>8);
offset 168 libcli/nbt/nbtname.c b[1] = (offset & 0xFF);
offset 191 libcli/nbt/nbtname.c NDR_CHECK(ndr_token_store(ndr, &ndr->nbt_string_list, s, ndr->offset));
offset 106 libcli/netlogon.c if (ndr->offset < ndr->data_size) {
offset 109 libcli/netlogon.c ndr->offset, ndr->data_size);
offset 429 librpc/gen_ndr/cli_eventlog.c uint32_t offset /* [in] */,
offset 441 librpc/gen_ndr/cli_eventlog.c r.in.offset = offset;
offset 55 librpc/gen_ndr/cli_eventlog.h uint32_t offset /* [in] */,
offset 295 librpc/gen_ndr/eventlog.h uint32_t offset;
offset 358 librpc/gen_ndr/nbt.h uint16_t offset;
offset 560 librpc/gen_ndr/ndr_drsblobs.c _relative_save_offset = ndr->offset;
offset 566 librpc/gen_ndr/ndr_drsblobs.c ndr->offset = _relative_save_offset;
offset 1153 librpc/gen_ndr/ndr_drsblobs.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 1174 librpc/gen_ndr/ndr_drsblobs.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 1496 librpc/gen_ndr/ndr_drsblobs.c _relative_save_offset = ndr->offset;
offset 1507 librpc/gen_ndr/ndr_drsblobs.c ndr->offset = _relative_save_offset;
offset 1595 librpc/gen_ndr/ndr_drsblobs.c _relative_save_offset = ndr->offset;
offset 1606 librpc/gen_ndr/ndr_drsblobs.c ndr->offset = _relative_save_offset;
offset 1818 librpc/gen_ndr/ndr_drsblobs.c _relative_save_offset = ndr->offset;
offset 1829 librpc/gen_ndr/ndr_drsblobs.c ndr->offset = _relative_save_offset;
offset 2667 librpc/gen_ndr/ndr_drsblobs.c _relative_save_offset = ndr->offset;
offset 2673 librpc/gen_ndr/ndr_drsblobs.c ndr->offset = _relative_save_offset;
offset 1577 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->in.offset));
offset 1615 librpc/gen_ndr/ndr_eventlog.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->in.offset));
offset 1670 librpc/gen_ndr/ndr_eventlog.c ndr_print_uint32(ndr, "offset", r->in.offset);
offset 565 librpc/gen_ndr/ndr_krb5pac.c _relative_save_offset = ndr->offset;
offset 576 librpc/gen_ndr/ndr_krb5pac.c ndr->offset = _relative_save_offset;
offset 1223 librpc/gen_ndr/ndr_nbt.c NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, r->offset));
offset 1240 librpc/gen_ndr/ndr_nbt.c NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, &r->offset));
offset 1257 librpc/gen_ndr/ndr_nbt.c ndr_print_uint16(ndr, "offset", r->offset);
offset 691 librpc/gen_ndr/ndr_security.c _relative_save_offset = ndr->offset;
offset 697 librpc/gen_ndr/ndr_security.c ndr->offset = _relative_save_offset;
offset 701 librpc/gen_ndr/ndr_security.c _relative_save_offset = ndr->offset;
offset 707 librpc/gen_ndr/ndr_security.c ndr->offset = _relative_save_offset;
offset 711 librpc/gen_ndr/ndr_security.c _relative_save_offset = ndr->offset;
offset 717 librpc/gen_ndr/ndr_security.c ndr->offset = _relative_save_offset;
offset 721 librpc/gen_ndr/ndr_security.c _relative_save_offset = ndr->offset;
offset 727 librpc/gen_ndr/ndr_security.c ndr->offset = _relative_save_offset;
offset 440 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 446 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 455 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 461 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 876 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 882 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 891 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 897 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 906 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 912 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1385 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1391 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1400 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1406 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1415 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1421 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1430 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1436 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1445 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1451 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1460 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1466 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1475 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1481 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1487 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1498 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1505 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1511 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1520 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1526 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1535 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1541 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1550 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1556 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1562 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1573 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1714 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1725 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1830 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1836 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1845 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1851 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1969 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1975 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 1984 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 1990 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 2138 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 2144 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 2208 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 2219 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 2246 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2252 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2258 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2264 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2270 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2276 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2282 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2288 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2294 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2300 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2370 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2376 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2382 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2388 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2394 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2400 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2406 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2412 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2418 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2424 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 2817 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 2823 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 2832 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 2838 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 2847 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 2853 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 2862 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 2868 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 2877 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 2883 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 2892 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 2898 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3325 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3331 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3340 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3346 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3355 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3361 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3370 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3376 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3385 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3391 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3400 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3406 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3415 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3421 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3430 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3436 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3445 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3451 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3457 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3463 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3470 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3476 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3482 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 3488 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 3996 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4002 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4011 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4017 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4026 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4032 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4041 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4047 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4056 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4062 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4071 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4077 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4086 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4092 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4101 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4107 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4116 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4122 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4128 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4134 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4141 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4147 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4153 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 4159 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 4269 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 4275 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 4281 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 4287 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 4333 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 4339 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 4345 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 4351 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 9908 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 9914 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10108 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10114 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10123 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10129 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10138 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10144 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10153 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10159 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10168 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10174 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10509 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10515 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10524 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10530 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10539 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10545 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10554 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10560 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10569 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10575 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10584 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10590 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10599 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10605 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10614 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10620 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 10629 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 10635 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11023 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11029 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11038 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11044 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11053 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11059 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11068 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11074 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11083 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11089 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11098 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11104 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11113 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11119 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11128 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11134 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11143 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11149 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11158 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11164 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11419 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11425 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11434 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11440 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11449 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11455 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11464 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11470 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11479 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11485 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11972 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11978 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 11987 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 11993 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12002 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12008 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12017 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12023 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12032 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12038 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12047 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12053 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12062 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12068 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12077 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12083 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12092 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12098 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12107 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12113 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12122 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12128 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12137 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12143 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12152 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12158 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12167 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12173 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12864 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12870 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12879 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12885 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12894 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12900 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12909 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12915 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12924 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12930 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12939 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12945 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12954 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12960 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12969 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12975 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12984 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 12990 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 12999 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13005 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13014 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13020 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13029 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13035 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13044 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13050 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13059 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13065 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13074 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13080 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13089 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13095 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13104 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13110 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13119 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13125 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13134 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13140 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13362 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13368 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13485 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13491 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13497 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13503 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13509 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13515 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13521 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13527 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13590 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13596 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13602 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13608 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13614 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13620 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13626 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13632 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13787 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13793 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13824 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13830 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13923 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 13929 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 13963 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 13998 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 14092 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 14098 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 14129 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 14135 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 14922 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 14928 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 15130 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 15136 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 15145 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 15151 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 15160 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 15166 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 15175 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 15181 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 15239 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 15245 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 15284 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 15290 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 15773 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 15779 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 15942 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 15948 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 15957 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 15963 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 15972 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 15978 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 16134 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 16140 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 16220 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 16226 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 16261 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16267 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16273 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16279 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16326 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16332 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16338 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16344 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16459 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 16465 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 16599 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 16605 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 16614 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 16620 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 16629 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 16635 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 16681 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16687 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16726 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16732 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16831 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 16837 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 16871 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 16906 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 18388 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_push_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 18435 librpc/gen_ndr/ndr_spoolss.c NDR_CHECK(ndr_pull_setup_relative_base_offset1(ndr, r, ndr->offset));
offset 18466 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 18472 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 18478 librpc/gen_ndr/ndr_spoolss.c _relative_save_offset = ndr->offset;
offset 18490 librpc/gen_ndr/ndr_spoolss.c ndr->offset = _relative_save_offset;
offset 298 librpc/gen_ndr/ndr_svcctl.c _relative_save_offset = ndr->offset;
offset 304 librpc/gen_ndr/ndr_svcctl.c ndr->offset = _relative_save_offset;
offset 313 librpc/gen_ndr/ndr_svcctl.c _relative_save_offset = ndr->offset;
offset 319 librpc/gen_ndr/ndr_svcctl.c ndr->offset = _relative_save_offset;
offset 433 librpc/gen_ndr/ndr_svcctl.c _relative_save_offset = ndr->offset;
offset 439 librpc/gen_ndr/ndr_svcctl.c ndr->offset = _relative_save_offset;
offset 448 librpc/gen_ndr/ndr_svcctl.c _relative_save_offset = ndr->offset;
offset 454 librpc/gen_ndr/ndr_svcctl.c ndr->offset = _relative_save_offset;
offset 1045 librpc/gen_ndr/ndr_svcctl.c _relative_save_offset = ndr->offset;
offset 1051 librpc/gen_ndr/ndr_svcctl.c ndr->offset = _relative_save_offset;
offset 1243 librpc/gen_ndr/ndr_svcctl.c _relative_save_offset = ndr->offset;
offset 1249 librpc/gen_ndr/ndr_svcctl.c ndr->offset = _relative_save_offset;
offset 1258 librpc/gen_ndr/ndr_svcctl.c _relative_save_offset = ndr->offset;
offset 1264 librpc/gen_ndr/ndr_svcctl.c ndr->offset = _relative_save_offset;
offset 1270 librpc/gen_ndr/ndr_svcctl.c _relative_save_offset = ndr->offset;
offset 1283 librpc/gen_ndr/ndr_svcctl.c ndr->offset = _relative_save_offset;
offset 485 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, r->offset));
offset 509 librpc/gen_ndr/ndr_winreg.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &r->offset));
offset 534 librpc/gen_ndr/ndr_winreg.c ndr_print_uint32(ndr, "offset", r->offset);
offset 119 librpc/gen_ndr/winreg.h uint32_t offset;
offset 61 librpc/ndr/libndr.h uint32_t offset;
offset 85 librpc/ndr/libndr.h uint32_t offset;
offset 217 librpc/ndr/libndr.h if ((n) > ndr->data_size || ndr->offset + (n) > ndr->data_size) { \
offset 222 librpc/ndr/libndr.h #define NDR_ALIGN(ndr, n) ndr_align_size(ndr->offset, n)
offset 231 librpc/ndr/libndr.h ndr->offset = (ndr->offset + (n-1)) & ~(n-1); \
offset 233 librpc/ndr/libndr.h if (ndr->offset > ndr->data_size) { \
offset 242 librpc/ndr/libndr.h uint32_t _pad = ((ndr->offset + (n-1)) & ~(n-1)) - ndr->offset; \
offset 368 librpc/ndr/libndr.h void ndr_push_restore_relative_base_offset(struct ndr_push *ndr, uint32_t offset);
offset 369 librpc/ndr/libndr.h enum ndr_err_code ndr_push_setup_relative_base_offset1(struct ndr_push *ndr, const void *p, uint32_t offset);
offset 374 librpc/ndr/libndr.h void ndr_pull_restore_relative_base_offset(struct ndr_pull *ndr, uint32_t offset);
offset 375 librpc/ndr/libndr.h enum ndr_err_code ndr_pull_setup_relative_base_offset1(struct ndr_pull *ndr, const void *p, uint32_t offset);
offset 379 librpc/ndr/libndr.h size_t ndr_align_size(uint32_t offset, size_t n);
offset 52 librpc/ndr/ndr.c _PUBLIC_ size_t ndr_align_size(uint32_t offset, size_t n)
offset 54 librpc/ndr/ndr.c if ((offset & (n-1)) == 0) return 0;
offset 55 librpc/ndr/ndr.c return n - (offset & (n-1));
offset 81 librpc/ndr/ndr.c ndr->offset += size;
offset 82 librpc/ndr/ndr.c if (ndr->offset > ndr->data_size) {
offset 95 librpc/ndr/ndr.c ndr->offset = ofs;
offset 96 librpc/ndr/ndr.c if (ndr->offset > ndr->data_size) {
offset 129 librpc/ndr/ndr.c blob = data_blob_const(ndr->data, ndr->offset);
offset 130 librpc/ndr/ndr.c if (ndr->alloc_size > ndr->offset) {
offset 131 librpc/ndr/ndr.c ndr->data[ndr->offset] = 0;
offset 142 librpc/ndr/ndr.c uint32_t size = extra_size + ndr->offset;
offset 144 librpc/ndr/ndr.c if (size < ndr->offset) {
offset 423 librpc/ndr/ndr.c uint32_t content_size = ndr->data_size - ndr->offset;
offset 532 librpc/ndr/ndr.c subndr->data = ndr->data + ndr->offset;
offset 533 librpc/ndr/ndr.c subndr->offset = 0;
offset 558 librpc/ndr/ndr.c advance = subndr->offset;
offset 590 librpc/ndr/ndr.c padding_len = size_is - subndr->offset;
offset 595 librpc/ndr/ndr.c (int)subndr->offset, (int)size_is);
offset 604 librpc/ndr/ndr.c NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, subndr->offset));
offset 608 librpc/ndr/ndr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, subndr->offset));
offset 616 librpc/ndr/ndr.c padding_len = NDR_ROUND(subndr->offset, 8) - subndr->offset;
offset 640 librpc/ndr/ndr.c NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, subndr->offset));
offset 651 librpc/ndr/ndr.c NDR_CHECK(ndr_push_bytes(ndr, subndr->data, subndr->offset));
offset 755 librpc/ndr/ndr.c uint32_t length, offset;
offset 756 librpc/ndr/ndr.c NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &offset));
offset 757 librpc/ndr/ndr.c if (offset != 0) {
offset 759 librpc/ndr/ndr.c "non-zero array offset %u\n", offset);
offset 848 librpc/ndr/ndr.c if (ndr->offset < ndr->data_size) {
offset 851 librpc/ndr/ndr.c ndr->offset, ndr->data_size);
offset 884 librpc/ndr/ndr.c if (ndr->offset < ndr->data_size) {
offset 887 librpc/ndr/ndr.c ndr->offset, ndr->data_size);
offset 950 librpc/ndr/ndr.c ret = ndr->offset;
offset 981 librpc/ndr/ndr.c ret = ndr->offset;
offset 997 librpc/ndr/ndr.c _PUBLIC_ void ndr_push_restore_relative_base_offset(struct ndr_push *ndr, uint32_t offset)
offset 999 librpc/ndr/ndr.c ndr->relative_base_offset = offset;
offset 1006 librpc/ndr/ndr.c _PUBLIC_ enum ndr_err_code ndr_push_setup_relative_base_offset1(struct ndr_push *ndr, const void *p, uint32_t offset)
offset 1008 librpc/ndr/ndr.c ndr->relative_base_offset = offset;
offset 1009 librpc/ndr/ndr.c return ndr_token_store(ndr, &ndr->relative_base_list, p, offset);
offset 1032 librpc/ndr/ndr.c NDR_CHECK(ndr_token_store(ndr, &ndr->relative_list, p, ndr->offset));
offset 1047 librpc/ndr/ndr.c save_offset = ndr->offset;
offset 1049 librpc/ndr/ndr.c if (ptr_offset > ndr->offset) {
offset 1052 librpc/ndr/ndr.c ptr_offset, ndr->offset);
offset 1054 librpc/ndr/ndr.c ndr->offset = ptr_offset;
offset 1061 librpc/ndr/ndr.c ndr->offset = save_offset;
offset 1076 librpc/ndr/ndr.c _PUBLIC_ void ndr_pull_restore_relative_base_offset(struct ndr_pull *ndr, uint32_t offset)
offset 1078 librpc/ndr/ndr.c ndr->relative_base_offset = offset;
offset 1085 librpc/ndr/ndr.c _PUBLIC_ enum ndr_err_code ndr_pull_setup_relative_base_offset1(struct ndr_pull *ndr, const void *p, uint32_t offset)
offset 1087 librpc/ndr/ndr.c ndr->relative_base_offset = offset;
offset 1088 librpc/ndr/ndr.c return ndr_token_store(ndr, &ndr->relative_base_list, p, offset);
offset 41 librpc/ndr/ndr_basic.c size_t ofs2 = (ndr->offset + (n-1)) & ~(n-1);
offset 43 librpc/ndr/ndr_basic.c for (i=ndr->offset;i<ofs2;i++) {
offset 50 librpc/ndr/ndr_basic.c for (i=ndr->offset;i<ofs2;i++) {
offset 64 librpc/ndr/ndr_basic.c *v = (int8_t)CVAL(ndr->data, ndr->offset);
offset 65 librpc/ndr/ndr_basic.c ndr->offset += 1;
offset 75 librpc/ndr/ndr_basic.c *v = CVAL(ndr->data, ndr->offset);
offset 76 librpc/ndr/ndr_basic.c ndr->offset += 1;
offset 87 librpc/ndr/ndr_basic.c *v = (uint16_t)NDR_SVAL(ndr, ndr->offset);
offset 88 librpc/ndr/ndr_basic.c ndr->offset += 2;
offset 99 librpc/ndr/ndr_basic.c *v = NDR_SVAL(ndr, ndr->offset);
offset 100 librpc/ndr/ndr_basic.c ndr->offset += 2;
offset 111 librpc/ndr/ndr_basic.c *v = NDR_IVALS(ndr, ndr->offset);
offset 112 librpc/ndr/ndr_basic.c ndr->offset += 4;
offset 123 librpc/ndr/ndr_basic.c *v = NDR_IVAL(ndr, ndr->offset);
offset 124 librpc/ndr/ndr_basic.c ndr->offset += 4;
offset 158 librpc/ndr/ndr_basic.c *v = NDR_IVAL(ndr, ndr->offset);
offset 159 librpc/ndr/ndr_basic.c *v |= (uint64_t)(NDR_IVAL(ndr, ndr->offset+4)) << 32;
offset 160 librpc/ndr/ndr_basic.c ndr->offset += 8;
offset 171 librpc/ndr/ndr_basic.c *v = ((uint64_t)NDR_IVAL(ndr, ndr->offset)) << 32;
offset 172 librpc/ndr/ndr_basic.c *v |= NDR_IVAL(ndr, ndr->offset+4);
offset 173 librpc/ndr/ndr_basic.c ndr->offset += 8;
offset 202 librpc/ndr/ndr_basic.c memcpy(&h, ndr->data+ndr->offset, sizeof(h));
offset 203 librpc/ndr/ndr_basic.c ndr->offset += sizeof(h);
offset 262 librpc/ndr/ndr_basic.c memcpy(data, ndr->data + ndr->offset, n);
offset 263 librpc/ndr/ndr_basic.c ndr->offset += n;
offset 284 librpc/ndr/ndr_basic.c SCVAL(ndr->data, ndr->offset, (uint8_t)v);
offset 285 librpc/ndr/ndr_basic.c ndr->offset += 1;
offset 295 librpc/ndr/ndr_basic.c SCVAL(ndr->data, ndr->offset, v);
offset 296 librpc/ndr/ndr_basic.c ndr->offset += 1;
offset 307 librpc/ndr/ndr_basic.c NDR_SSVAL(ndr, ndr->offset, (uint16_t)v);
offset 308 librpc/ndr/ndr_basic.c ndr->offset += 2;
offset 319 librpc/ndr/ndr_basic.c NDR_SSVAL(ndr, ndr->offset, v);
offset 320 librpc/ndr/ndr_basic.c ndr->offset += 2;
offset 331 librpc/ndr/ndr_basic.c NDR_SIVALS(ndr, ndr->offset, v);
offset 332 librpc/ndr/ndr_basic.c ndr->offset += 4;
offset 343 librpc/ndr/ndr_basic.c NDR_SIVAL(ndr, ndr->offset, v);
offset 344 librpc/ndr/ndr_basic.c ndr->offset += 4;
offset 355 librpc/ndr/ndr_basic.c NDR_SIVAL(ndr, ndr->offset, (v & 0xFFFFFFFF));
offset 356 librpc/ndr/ndr_basic.c NDR_SIVAL(ndr, ndr->offset+4, (v>>32));
offset 357 librpc/ndr/ndr_basic.c ndr->offset += 8;
offset 368 librpc/ndr/ndr_basic.c NDR_SIVAL(ndr, ndr->offset, (v>>32));
offset 369 librpc/ndr/ndr_basic.c NDR_SIVAL(ndr, ndr->offset+4, (v & 0xFFFFFFFF));
offset 370 librpc/ndr/ndr_basic.c ndr->offset += 8;
offset 399 librpc/ndr/ndr_basic.c memcpy(ndr->data+ndr->offset, &h, sizeof(h));
offset 400 librpc/ndr/ndr_basic.c ndr->offset += sizeof(h);
offset 422 librpc/ndr/ndr_basic.c memcpy(ndr->data + ndr->offset, data, n);
offset 423 librpc/ndr/ndr_basic.c ndr->offset += n;
offset 433 librpc/ndr/ndr_basic.c memset(ndr->data + ndr->offset, 0, n);
offset 434 librpc/ndr/ndr_basic.c ndr->offset += n;
offset 814 librpc/ndr/ndr_basic.c if (ndr->data_size - ndr->offset < length) {
offset 815 librpc/ndr/ndr_basic.c length = ndr->data_size - ndr->offset;
offset 818 librpc/ndr/ndr_basic.c length = ndr->data_size - ndr->offset;
offset 823 librpc/ndr/ndr_basic.c *blob = data_blob_talloc(ndr->current_mem_ctx, ndr->data+ndr->offset, length);
offset 824 librpc/ndr/ndr_basic.c ndr->offset += length;
offset 63 librpc/ndr/ndr_compression.c comp_chunk_offset = ndrpull->offset;
offset 68 librpc/ndr/ndr_compression.c plain_chunk_offset = ndrpush->offset;
offset 133 librpc/ndr/ndr_compression.c if ((plain_chunk_size < 0x00008000) || (ndrpull->offset+4 >= ndrpull->data_size)) {
offset 171 librpc/ndr/ndr_compression.c plain_chunk_size = MIN(max_plain_size, ndrpull->data_size - ndrpull->offset);
offset 172 librpc/ndr/ndr_compression.c plain_chunk_offset = ndrpull->offset;
offset 183 librpc/ndr/ndr_compression.c comp_chunk_size_offset = ndrpush->offset;
offset 188 librpc/ndr/ndr_compression.c comp_chunk.data = ndrpush->data + ndrpush->offset;
offset 257 librpc/ndr/ndr_compression.c tmp_offset = ndrpush->offset;
offset 258 librpc/ndr/ndr_compression.c ndrpush->offset = comp_chunk_size_offset;
offset 260 librpc/ndr/ndr_compression.c ndrpush->offset = tmp_offset;
offset 267 librpc/ndr/ndr_compression.c ndrpush->offset += comp_chunk_size;
offset 291 librpc/ndr/ndr_compression.c comp_chunk_offset = ndrpull->offset;
offset 296 librpc/ndr/ndr_compression.c plain_chunk_offset = ndrpush->offset;
offset 316 librpc/ndr/ndr_compression.c if ((plain_chunk_size < 0x00010000) || (ndrpull->offset+4 >= ndrpull->data_size)) {
offset 338 librpc/ndr/ndr_compression.c plain_chunk_size = MIN(max_plain_size, ndrpull->data_size - ndrpull->offset);
offset 339 librpc/ndr/ndr_compression.c plain_chunk_offset = ndrpull->offset;
offset 350 librpc/ndr/ndr_compression.c comp_chunk_size_offset = ndrpush->offset;
offset 355 librpc/ndr/ndr_compression.c comp_chunk.data = ndrpush->data + ndrpush->offset;
offset 370 librpc/ndr/ndr_compression.c tmp_offset = ndrpush->offset;
offset 371 librpc/ndr/ndr_compression.c ndrpush->offset = comp_chunk_size_offset;
offset 373 librpc/ndr/ndr_compression.c ndrpush->offset = tmp_offset;
offset 375 librpc/ndr/ndr_compression.c ndrpush->offset += comp_chunk.length;
offset 432 librpc/ndr/ndr_compression.c comndr->offset = 0;
offset 492 librpc/ndr/ndr_compression.c ndrpull->data_size = uncomndr->offset;
offset 493 librpc/ndr/ndr_compression.c ndrpull->offset = 0;
offset 137 librpc/ndr/ndr_drsblobs.c _relative_save_offset = ndr->offset;
offset 143 librpc/ndr/ndr_drsblobs.c ndr->offset = _relative_save_offset;
offset 147 librpc/ndr/ndr_drsblobs.c _relative_save_offset = ndr->offset;
offset 153 librpc/ndr/ndr_drsblobs.c ndr->offset = _relative_save_offset;
offset 182 librpc/ndr/ndr_drsblobs.c uint32_t offset;
offset 186 librpc/ndr/ndr_drsblobs.c offset = ndr->offset;
offset 187 librpc/ndr/ndr_drsblobs.c ndr->offset = ndr->data_size - 8;
offset 192 librpc/ndr/ndr_drsblobs.c ndr->offset = offset;
offset 195 librpc/ndr/ndr_drsuapi.c decompressed_length = _ndr_ts_compressed->offset;
offset 198 librpc/ndr/ndr_drsuapi.c compressed_length = _ndr_ts->offset;
offset 238 librpc/ndr/ndr_drsuapi.c decompressed_length = _ndr_ts_compressed->offset;
offset 241 librpc/ndr/ndr_drsuapi.c compressed_length = _ndr_ts->offset;
offset 281 librpc/ndr/ndr_drsuapi.c decompressed_length = _ndr_ts_compressed->offset;
offset 284 librpc/ndr/ndr_drsuapi.c compressed_length = _ndr_ts->offset;
offset 324 librpc/ndr/ndr_drsuapi.c decompressed_length = _ndr_ts_compressed->offset;
offset 327 librpc/ndr/ndr_drsuapi.c compressed_length = _ndr_ts->offset;
offset 105 librpc/ndr/ndr_krb5pac.c _relative_save_offset = ndr->offset;
offset 117 librpc/ndr/ndr_krb5pac.c ndr->offset = _relative_save_offset;
offset 48 librpc/ndr/ndr_orpc.c ndr->offset -= 2;
offset 67 librpc/ndr/ndr_orpc.c ndr->offset -= 2;
offset 137 librpc/ndr/ndr_orpc.c ndr->offset -= 2;
offset 64 librpc/ndr/ndr_sec_helper.c uint32_t start_ofs = ndr->offset;
offset 75 librpc/ndr/ndr_sec_helper.c size = ndr->offset - start_ofs;
offset 83 librpc/ndr/ndr_sec_helper.c ndr->offset += pad;
offset 223 librpc/ndr/ndr_sec_helper.c subndr->data = ndr->data + ndr->offset;
offset 225 librpc/ndr/ndr_sec_helper.c subndr->offset = 0;
offset 258 librpc/ndr/ndr_sec_helper.c old_offset = ndr->offset;
offset 261 librpc/ndr/ndr_sec_helper.c padding = 28 - (ndr->offset - old_offset);
offset 279 librpc/ndr/ndr_sec_helper.c if (ndr->data_size == ndr->offset) {
offset 72 librpc/ndr/ndr_spoolss_buf.c if (r->in.offered > _ndr_info->offset) {\
offset 73 librpc/ndr/ndr_spoolss_buf.c uint32_t _padding_len = r->in.offered - _ndr_info->offset;\
offset 75 librpc/ndr/ndr_spoolss_buf.c } else if (r->in.offered < _ndr_info->offset) {\
offset 78 librpc/ndr/ndr_spoolss_buf.c (unsigned)r->in.offered, (unsigned)_ndr_info->offset);\
offset 486 librpc/ndr/ndr_spoolss_buf.c if (r->in.offered > _ndr_info->offset) {
offset 487 librpc/ndr/ndr_spoolss_buf.c uint32_t _padding_len = r->in.offered - _ndr_info->offset;
offset 587 librpc/ndr/ndr_spoolss_buf.c if (r->in.offered > _ndr_info->offset) {
offset 588 librpc/ndr/ndr_spoolss_buf.c uint32_t _padding_len = r->in.offered - _ndr_info->offset;
offset 1029 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1035 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1044 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1050 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1056 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1076 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1083 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1089 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1098 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1104 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1113 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1119 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1128 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1134 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1143 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1149 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1158 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1164 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 1173 librpc/ndr/ndr_spoolss_buf.c _relative_save_offset = ndr->offset;
offset 1179 librpc/ndr/ndr_spoolss_buf.c ndr->offset = _relative_save_offset;
offset 293 librpc/tools/ndrdump.c if (ndr_pull->offset != ndr_pull->data_size) {
offset 294 librpc/tools/ndrdump.c printf("WARNING! %d unread bytes while parsing context file\n", ndr_pull->data_size - ndr_pull->offset);
offset 329 librpc/tools/ndrdump.c if (ndr_pull->offset != ndr_pull->data_size) {
offset 330 librpc/tools/ndrdump.c printf("WARNING! %d unread bytes\n", ndr_pull->data_size - ndr_pull->offset);
offset 331 librpc/tools/ndrdump.c ndrdump_data(ndr_pull->data+ndr_pull->offset,
offset 332 librpc/tools/ndrdump.c ndr_pull->data_size - ndr_pull->offset,
offset 337 librpc/tools/ndrdump.c printf("%d bytes consumed\n", ndr_pull->offset);
offset 389 librpc/tools/ndrdump.c if (ndr_v_pull->offset != ndr_v_pull->data_size) {
offset 390 librpc/tools/ndrdump.c printf("WARNING! %d unread bytes in validation\n", ndr_v_pull->data_size - ndr_v_pull->offset);
offset 391 librpc/tools/ndrdump.c ndrdump_data(ndr_v_pull->data+ndr_v_pull->offset,
offset 392 librpc/tools/ndrdump.c ndr_v_pull->data_size - ndr_v_pull->offset,
offset 406 librpc/tools/ndrdump.c if (ndr_pull->offset != ndr_v_pull->offset) {
offset 408 librpc/tools/ndrdump.c (unsigned long long)ndr_pull->offset, (unsigned long long)ndr_v_pull->offset);
offset 760 nsswitch/winbind_nss_aix.c attrlist_t *offset = NULL;
offset 800 nsswitch/winbind_nss_aix.c offset = (attrlist_t *)(ret + n);
offset 495 source3/auth/pass_check.c static NTSTATUS string_combinations2(char *s, int offset, NTSTATUS (*fn) (const char *),
offset 506 source3/auth/pass_check.c if (N <= 0 || offset >= len)
offset 509 source3/auth/pass_check.c for (i = offset; i < (len - (N - 1)); i++) {
offset 1116 source3/client/clitar.c int offset = 0, left = finfo.size;
offset 1131 source3/client/clitar.c offset = strlen(client_get_cur_dir());
offset 1143 source3/client/clitar.c unfixtarname(longname + offset, buffer_p, MIN(TBLOCK, finfo.size), first--);
offset 1146 source3/client/clitar.c offset += TBLOCK;
offset 1040 source3/include/includes.h ssize_t readahead(int fd, off64_t offset, size_t count);
offset 98 source3/include/libsmb_internal.h SMB_OFF_T offset;
offset 314 source3/include/libsmb_internal.h off_t offset);
offset 393 source3/include/libsmb_internal.h off_t offset,
offset 856 source3/include/libsmbclient.h off_t offset,
offset 944 source3/include/libsmbclient.h off_t offset);
offset 1324 source3/include/libsmbclient.h off_t smbc_lseek(int fd, off_t offset, int whence);
offset 1533 source3/include/libsmbclient.h int smbc_lseekdir(int fd, off_t offset);
offset 89 source3/include/locking.h uint64_t offset;
offset 649 source3/include/proto.h SMB_OFF_T offset,
offset 653 source3/include/proto.h SMB_OFF_T offset,
offset 705 source3/include/proto.h ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count);
offset 921 source3/include/proto.h int sys_ftruncate(int fd, SMB_OFF_T offset);
offset 922 source3/include/proto.h SMB_OFF_T sys_lseek(int fd, SMB_OFF_T offset, int whence);
offset 923 source3/include/proto.h int sys_fseek(FILE *fp, SMB_OFF_T offset, int whence);
offset 931 source3/include/proto.h void sys_seekdir(SMB_STRUCT_DIR *dirp, long offset);
offset 1004 source3/include/proto.h void push_dos_date(uint8_t *buf, int offset, time_t unixdate, int zone_offset);
offset 1005 source3/include/proto.h void push_dos_date2(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
offset 1006 source3/include/proto.h void push_dos_date3(uint8_t *buf,int offset,time_t unixdate, int zone_offset);
offset 1017 source3/include/proto.h void srv_put_dos_date(char *buf,int offset,time_t unixdate);
offset 1018 source3/include/proto.h void srv_put_dos_date2(char *buf,int offset, time_t unixdate);
offset 1019 source3/include/proto.h void srv_put_dos_date3(char *buf,int offset,time_t unixdate);
offset 1045 source3/include/proto.h void cli_put_dos_date(struct cli_state *cli, char *buf, int offset, time_t unixdate);
offset 1046 source3/include/proto.h void cli_put_dos_date2(struct cli_state *cli, char *buf, int offset, time_t unixdate);
offset 1047 source3/include/proto.h void cli_put_dos_date3(struct cli_state *cli, char *buf, int offset, time_t unixdate);
offset 1153 source3/include/proto.h bool fcntl_lock(int fd, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
offset 1203 source3/include/proto.h bool trans_oob(uint32_t bufsize, uint32_t offset, uint32_t length);
offset 2515 source3/include/proto.h uint32 offset, uint32 len,
offset 2518 source3/include/proto.h uint32 offset, uint32 len, int timeout, enum brl_type lock_type);
offset 2519 source3/include/proto.h bool cli_unlock(struct cli_state *cli, int fnum, uint32 offset, uint32 len);
offset 2521 source3/include/proto.h uint64_t offset, uint64_t len, int timeout, enum brl_type lock_type);
offset 2522 source3/include/proto.h bool cli_unlock64(struct cli_state *cli, int fnum, uint64_t offset, uint64_t len);
offset 2524 source3/include/proto.h uint64_t offset, uint64_t len,
offset 2526 source3/include/proto.h bool cli_posix_unlock(struct cli_state *cli, int fnum, uint64_t offset, uint64_t len);
offset 2755 source3/include/proto.h off_t offset, size_t size);
offset 2772 source3/include/proto.h off_t offset, size_t size);
offset 2773 source3/include/proto.h ssize_t cli_readraw(struct cli_state *cli, int fnum, char *buf, off_t offset, size_t size);
offset 2776 source3/include/proto.h const char *buf, off_t offset, size_t size);
offset 2778 source3/include/proto.h int fnum, char *buf, off_t offset, size_t size1);
offset 2783 source3/include/proto.h off_t offset, size_t size);
offset 3426 source3/include/proto.h uint64_t offset,
offset 3437 source3/include/proto.h uint64_t offset,
offset 3442 source3/include/proto.h uint64_t offset,
offset 5732 source3/include/proto.h bool prs_set_offset(prs_struct *ps, uint32 offset);
offset 5768 source3/include/proto.h bool prs_uint16_pre(const char *name, prs_struct *ps, int depth, uint16 *data16, uint32 *offset);
offset 5771 source3/include/proto.h bool prs_uint32_pre(const char *name, prs_struct *ps, int depth, uint32 *data32, uint32 *offset);
offset 5776 source3/include/proto.h bool prs_hash1(prs_struct *ps, uint32 offset, int len);
offset 6154 source3/include/proto.h uint64_t offset,
offset 6162 source3/include/proto.h uint64_t offset,
offset 6260 source3/include/proto.h void dptr_SeekDir(struct dptr_struct *dptr, long offset);
offset 6269 source3/include/proto.h void dptr_DirCacheAdd(struct dptr_struct *dptr, const char *name, long offset);
offset 6291 source3/include/proto.h void SeekDir(struct smb_Dir *dirp, long offset);
offset 6293 source3/include/proto.h void DirCacheAdd(struct smb_Dir *dirp, const char *name, long offset);
offset 7127 source3/include/proto.h size_t byte_count, SMB_OFF_T offset);
offset 7136 source3/include/proto.h SMB_OFF_T offset);
offset 7164 source3/include/proto.h void nb_writex(int handle, int offset, int size, int ret_size);
offset 7165 source3/include/proto.h void nb_readx(int handle, int offset, int size, int ret_size);
offset 113 source3/include/rpc_misc.h uint32 offset;
offset 330 source3/include/smb.h SMB_OFF_T offset;
offset 320 source3/include/vfs.h void (*seekdir)(struct vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset);
offset 350 source3/include/vfs.h ssize_t (*pread)(struct vfs_handle_struct *handle, struct files_struct *fsp, void *data, size_t n, SMB_OFF_T offset);
offset 352 source3/include/vfs.h ssize_t (*pwrite)(struct vfs_handle_struct *handle, struct files_struct *fsp, const void *data, size_t n, SMB_OFF_T offset);
offset 353 source3/include/vfs.h SMB_OFF_T (*lseek)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_OFF_T offset, int whence);
offset 354 source3/include/vfs.h ssize_t (*sendfile)(struct vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *header, SMB_OFF_T offset, size_t count);
offset 355 source3/include/vfs.h ssize_t (*recvfile)(struct vfs_handle_struct *handle, int fromfd, files_struct *tofsp, SMB_OFF_T offset, size_t count);
offset 371 source3/include/vfs.h int (*ftruncate)(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_OFF_T offset);
offset 372 source3/include/vfs.h bool (*lock)(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
offset 42 source3/include/vfs_macros.h #define SMB_VFS_SEEKDIR(conn, dirp, offset) ((conn)->vfs.ops.seekdir((conn)->vfs.handles.seekdir, (dirp), (offset)))
offset 58 source3/include/vfs_macros.h #define SMB_VFS_LSEEK(fsp, offset, whence) ((fsp)->conn->vfs.ops.lseek((fsp)->conn->vfs.handles.lseek, (fsp), (offset), (whence)))
offset 59 source3/include/vfs_macros.h #define SMB_VFS_SENDFILE(tofd, fromfsp, header, offset, count) ((fromfsp)->conn->vfs.ops.sendfile((fromfsp)->conn->vfs.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
offset 60 source3/include/vfs_macros.h #define SMB_VFS_RECVFILE(fromfd, tofsp, offset, count) ((tofsp)->conn->vfs.ops.recvfile((tofsp)->conn->vfs.handles.recvfile, (fromfd), (tofsp), (offset), (count)))
offset 76 source3/include/vfs_macros.h #define SMB_VFS_FTRUNCATE(fsp, offset) ((fsp)->conn->vfs.ops.ftruncate((fsp)->conn->vfs.handles.ftruncate, (fsp), (offset)))
offset 77 source3/include/vfs_macros.h #define SMB_VFS_LOCK(fsp, op, offset, count, type) ((fsp)->conn->vfs.ops.lock((fsp)->conn->vfs.handles.lock, (fsp), (op), (offset), (count), (type)))
offset 176 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SEEKDIR(conn, dirp, offset) ((conn)->vfs_opaque.ops.seekdir((conn)->vfs_opaque.handles.seekdir, (dirp), (offset)))
offset 192 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_LSEEK(fsp, offset, whence) ((fsp)->conn->vfs_opaque.ops.lseek((fsp)->conn->vfs_opaque.handles.lseek, (fsp), (offset), (whence)))
offset 193 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_SENDFILE(tofd, fromfsp, header, offset, count) ((fromfsp)->conn->vfs_opaque.ops.sendfile((fromfsp)->conn->vfs_opaque.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
offset 194 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_RECVFILE(fromfd, tofsp, offset, count) ((tofsp)->conn->vfs_opaque.ops.recvfile((tofsp)->conn->vfs_opaque.handles.recvfile, (fromfd), (tofsp), (offset), (count)))
offset 210 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_FTRUNCATE(fsp, offset) ((fsp)->conn->vfs_opaque.ops.ftruncate((fsp)->conn->vfs_opaque.handles.ftruncate, (fsp), (offset)))
offset 211 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_LOCK(fsp, op, offset, count, type) ((fsp)->conn->vfs_opaque.ops.lock((fsp)->conn->vfs_opaque.handles.lock, (fsp), (op), (offset), (count), (type)))
offset 310 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset) ((handle)->vfs_next.ops.seekdir((handle)->vfs_next.handles.seekdir, (dirp), (offset)))
offset 327 source3/include/vfs_macros.h #define SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence) ((handle)->vfs_next.ops.lseek((handle)->vfs_next.handles.lseek, (fsp), (offset), (whence)))
offset 328 source3/include/vfs_macros.h #define SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, header, offset, count) ((handle)->vfs_next.ops.sendfile((handle)->vfs_next.handles.sendfile, (tofd), (fromfsp), (header), (offset), (count)))
offset 329 source3/include/vfs_macros.h #define SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, count) ((handle)->vfs_next.ops.recvfile((handle)->vfs_next.handles.recvfile, (fromfd), (tofsp), (offset), (count)))
offset 345 source3/include/vfs_macros.h #define SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset) ((handle)->vfs_next.ops.ftruncate((handle)->vfs_next.handles.ftruncate, (fsp), (offset)))
offset 346 source3/include/vfs_macros.h #define SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type) ((handle)->vfs_next.ops.lock((handle)->vfs_next.handles.lock, (fsp), (op), (offset), (count), (type)))
offset 709 source3/lib/ldb/common/ldb_dn.c int i, offset;
offset 716 source3/lib/ldb/common/ldb_dn.c offset = old->comp_num - old_base->comp_num;
offset 718 source3/lib/ldb/common/ldb_dn.c offset + new_base->comp_num))) {
offset 721 source3/lib/ldb/common/ldb_dn.c for (i = 0; i < offset; i++) {
offset 620 source3/lib/ldb/include/ldb.h int offset;
offset 290 source3/lib/ldb/tools/cmdline.c control->match.byOffset.offset = os;
offset 52 source3/lib/recvfile.c SMB_OFF_T offset,
offset 63 source3/lib/recvfile.c fromfd, tofd, (double)offset,
offset 70 source3/lib/recvfile.c if (tofd != -1 && offset != (SMB_OFF_T)-1) {
offset 71 source3/lib/recvfile.c if (sys_lseek(tofd, offset, SEEK_SET) == -1) {
offset 145 source3/lib/recvfile.c SMB_OFF_T offset,
offset 151 source3/lib/recvfile.c loff_t splice_offset = offset;
offset 155 source3/lib/recvfile.c fromfd, tofd, (double)offset,
offset 172 source3/lib/recvfile.c offset,
offset 178 source3/lib/recvfile.c return default_sys_recvfile(fromfd, tofd, offset, count);
offset 194 source3/lib/recvfile.c offset, count);
offset 236 source3/lib/recvfile.c SMB_OFF_T offset,
offset 239 source3/lib/recvfile.c return default_sys_recvfile(fromfd, tofd, offset, count);
offset 190 source3/lib/secdesc.c uint32 offset = 0;
offset 222 source3/lib/secdesc.c offset = SEC_DESC_HEADER_SIZE;
offset 229 source3/lib/secdesc.c offset += dst->sacl->size;
offset 232 source3/lib/secdesc.c offset += dst->dacl->size;
offset 236 source3/lib/secdesc.c offset += ndr_size_dom_sid(dst->owner_sid, NULL, 0);
offset 240 source3/lib/secdesc.c offset += ndr_size_dom_sid(dst->group_sid, NULL, 0);
offset 243 source3/lib/secdesc.c *sd_size = (size_t)offset;
offset 36 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
offset 62 source3/lib/sendfile.c nwritten = sendfile64(tofd, fromfd, &offset, total);
offset 64 source3/lib/sendfile.c nwritten = sendfile(tofd, fromfd, &offset, total);
offset 99 source3/lib/sendfile.c extern int32 sendfile (int out_fd, int in_fd, int32 *offset, uint32 count);
offset 106 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
offset 121 source3/lib/sendfile.c if ((sizeof(SMB_OFF_T) >= 8) && (offset + count > (SMB_OFF_T)0x7FFFFFFF)) {
offset 142 source3/lib/sendfile.c small_offset = (int32)offset;
offset 183 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
offset 200 source3/lib/sendfile.c vec[1].sfv_off = offset;
offset 208 source3/lib/sendfile.c vec[0].sfv_off = offset;
offset 269 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
offset 299 source3/lib/sendfile.c nwritten = sendfile64(tofd, fromfd, offset, total, &hdtrl[0], 0);
offset 301 source3/lib/sendfile.c nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
offset 329 source3/lib/sendfile.c offset += nwritten;
offset 340 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
offset 373 source3/lib/sendfile.c ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0);
offset 401 source3/lib/sendfile.c offset += nwritten;
offset 413 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
offset 429 source3/lib/sendfile.c hdtrl.file_offset = offset;
offset 463 source3/lib/sendfile.c ssize_t sys_sendfile(int tofd, int fromfd, const DATA_BLOB *header, SMB_OFF_T offset, size_t count)
offset 608 source3/lib/substitute.c int offset = 0;
offset 611 source3/lib/substitute.c offset = 7;
offset 614 source3/lib/substitute.c addr + offset);
offset 348 source3/lib/system.c int sys_ftruncate(int fd, SMB_OFF_T offset)
offset 351 source3/lib/system.c return ftruncate64(fd, offset);
offset 353 source3/lib/system.c return ftruncate(fd, offset);
offset 361 source3/lib/system.c SMB_OFF_T sys_lseek(int fd, SMB_OFF_T offset, int whence)
offset 364 source3/lib/system.c return lseek64(fd, offset, whence);
offset 366 source3/lib/system.c return lseek(fd, offset, whence);
offset 374 source3/lib/system.c int sys_fseek(FILE *fp, SMB_OFF_T offset, int whence)
offset 377 source3/lib/system.c return fseek64(fp, offset, whence);
offset 379 source3/lib/system.c return fseeko64(fp, offset, whence);
offset 381 source3/lib/system.c return fseek(fp, offset, whence);
offset 498 source3/lib/system.c void sys_seekdir(SMB_STRUCT_DIR *dirp, long offset)
offset 501 source3/lib/system.c seekdir64(dirp, offset);
offset 503 source3/lib/system.c seekdir(dirp, offset);
offset 252 source3/lib/time.c static void put_dos_date(char *buf,int offset,time_t unixdate, int zone_offset)
offset 255 source3/lib/time.c SIVAL(buf,offset,x);
offset 263 source3/lib/time.c static void put_dos_date2(char *buf,int offset,time_t unixdate, int zone_offset)
offset 267 source3/lib/time.c SIVAL(buf,offset,x);
offset 276 source3/lib/time.c static void put_dos_date3(char *buf,int offset,time_t unixdate, int zone_offset)
offset 281 source3/lib/time.c SIVAL(buf,offset,unixdate);
offset 289 source3/lib/time.c void srv_put_dos_date(char *buf,int offset,time_t unixdate)
offset 291 source3/lib/time.c put_dos_date(buf, offset, unixdate, server_zone_offset);
offset 294 source3/lib/time.c void srv_put_dos_date2(char *buf,int offset, time_t unixdate)
offset 296 source3/lib/time.c put_dos_date2(buf, offset, unixdate, server_zone_offset);
offset 299 source3/lib/time.c void srv_put_dos_date3(char *buf,int offset,time_t unixdate)
offset 301 source3/lib/time.c put_dos_date3(buf, offset, unixdate, server_zone_offset);
offset 775 source3/lib/time.c void cli_put_dos_date(struct cli_state *cli, char *buf, int offset, time_t unixdate)
offset 777 source3/lib/time.c put_dos_date(buf, offset, unixdate, cli->serverzone);
offset 780 source3/lib/time.c void cli_put_dos_date2(struct cli_state *cli, char *buf, int offset, time_t unixdate)
offset 782 source3/lib/time.c put_dos_date2(buf, offset, unixdate, cli->serverzone);
offset 785 source3/lib/time.c void cli_put_dos_date3(struct cli_state *cli, char *buf, int offset, time_t unixdate)
offset 787 source3/lib/time.c put_dos_date3(buf, offset, unixdate, cli->serverzone);
offset 27 source3/lib/username.c static struct passwd *uname_string_combinations2(char *s, TALLOC_CTX *mem_ctx, int offset,
offset 150 source3/lib/username.c int offset,
offset 158 source3/lib/username.c if (N <= 0 || offset >= len)
offset 161 source3/lib/username.c for (i=offset;i<(len-(N-1));i++) {
offset 2840 source3/lib/util.c bool trans_oob(uint32_t bufsize, uint32_t offset, uint32_t length)
offset 2842 source3/lib/util.c if ((offset + length < offset) || (offset + length < length)) {
offset 2846 source3/lib/util.c if ((offset > bufsize) || (offset + length > bufsize)) {
offset 930 source3/lib/util_str.c int offset = PTR_DIFF(s,string);
offset 938 source3/lib/util_str.c p = string + offset + (p - s);
offset 1025 source3/lib/util_str.c int offset = PTR_DIFF(s,string);
offset 1034 source3/lib/util_str.c p = string + offset + (p - s);
offset 405 source3/libaddns/dns.h size_t offset;
offset 305 source3/libaddns/dnsgss.c msg.length = buf->offset;
offset 34 source3/libaddns/dnsmarshall.c result->offset = 0;
offset 55 source3/libaddns/dnsmarshall.c if (buf->offset + len < buf->offset) {
offset 63 source3/libaddns/dnsmarshall.c if ((buf->offset + len) > 0xffff) {
offset 71 source3/libaddns/dnsmarshall.c if (buf->offset + len > buf->size) {
offset 72 source3/libaddns/dnsmarshall.c size_t new_size = buf->offset + len;
offset 91 source3/libaddns/dnsmarshall.c memcpy(buf->data + buf->offset, data, len);
offset 92 source3/libaddns/dnsmarshall.c buf->offset += len;
offset 113 source3/libaddns/dnsmarshall.c if ((len > buf->size) || (buf->offset + len > buf->size)) {
offset 118 source3/libaddns/dnsmarshall.c memcpy((void *)data, (const void *)(buf->data + buf->offset), len);
offset 119 source3/libaddns/dnsmarshall.c buf->offset += len;
offset 205 source3/libaddns/dnsmarshall.c new_buf.offset = len & 0x3f;
offset 206 source3/libaddns/dnsmarshall.c new_buf.offset <<= 8;
offset 207 source3/libaddns/dnsmarshall.c new_buf.offset |= low;
offset 210 source3/libaddns/dnsrecord.c buf->offset, buf->data, prec);
offset 230 source3/libaddns/dnsrecord.c buf.offset = 0;
offset 299 source3/libaddns/dnsrecord.c buf->offset, buf->data, prec);
offset 174 source3/libaddns/dnssock.c uint16 len = htons(buf->offset);
offset 180 source3/libaddns/dnssock.c return write_all(conn->s, buf->data, buf->offset);
offset 188 source3/libaddns/dnssock.c ret = sendto(conn->s, buf->data, buf->offset, 0,
offset 192 source3/libaddns/dnssock.c if (ret != buf->offset) {
offset 318 source3/libaddns/dnssock.c buf->offset = 0;
offset 86 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 124 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 163 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 198 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 231 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset, len3,
offset 245 source3/librpc/ndr/ndr_string.c len1 = ascii_len_n((const char *)(ndr->data+ndr->offset), ndr->data_size - ndr->offset);
offset 247 source3/librpc/ndr/ndr_string.c len1 = utf16_len_n(ndr->data+ndr->offset, ndr->data_size - ndr->offset);
offset 250 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset, len1,
offset 267 source3/librpc/ndr/ndr_string.c len1 = ndr->data_size - ndr->offset;
offset 275 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset, len1,
offset 503 source3/librpc/ndr/ndr_string.c for (count = 0; ((ndr->data_size - ndr->offset) > 0); count++) {
offset 640 source3/librpc/ndr/ndr_string.c save_offset = ndr->offset;
offset 645 source3/librpc/ndr/ndr_string.c if (ndr->data[ndr->offset+i] != 0) {
offset 646 source3/librpc/ndr/ndr_string.c ndr->offset = save_offset;
offset 652 source3/librpc/ndr/ndr_string.c ndr->offset = save_offset;
offset 673 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset, length*byte_mul,
offset 698 source3/librpc/ndr/ndr_string.c ndr->data+ndr->offset, required, false);
offset 706 source3/librpc/ndr/ndr_string.c memset(ndr->data+ndr->offset+ret, 0, required-ret);
offset 709 source3/librpc/ndr/ndr_string.c ndr->offset += required;
offset 1227 source3/libsmb/clifile.c uint32 offset, uint32 len,
offset 1251 source3/libsmb/clifile.c SIVAL(p, 2, offset);
offset 1280 source3/libsmb/clifile.c uint32 offset, uint32 len, int timeout, enum brl_type lock_type)
offset 1303 source3/libsmb/clifile.c SIVAL(p, 2, offset);
offset 1334 source3/libsmb/clifile.c bool cli_unlock(struct cli_state *cli, int fnum, uint32 offset, uint32 len)
offset 1356 source3/libsmb/clifile.c SIVAL(p, 2, offset);
offset 1377 source3/libsmb/clifile.c uint64_t offset, uint64_t len, int timeout, enum brl_type lock_type)
offset 1384 source3/libsmb/clifile.c return cli_lock(cli, fnum, offset, len, timeout, lock_type);
offset 1408 source3/libsmb/clifile.c SOFF_T_R(p, 4, offset);
offset 1437 source3/libsmb/clifile.c bool cli_unlock64(struct cli_state *cli, int fnum, uint64_t offset, uint64_t len)
offset 1442 source3/libsmb/clifile.c return cli_unlock(cli, fnum, offset, len);
offset 1463 source3/libsmb/clifile.c SOFF_T_R(p, 4, offset);
offset 1484 source3/libsmb/clifile.c uint64_t offset, uint64_t len, bool wait_lock, enum brl_type lock_type)
offset 1519 source3/libsmb/clifile.c SOFF_T(data, POSIX_LOCK_START_OFFSET, offset);
offset 1555 source3/libsmb/clifile.c uint64_t offset, uint64_t len,
offset 1561 source3/libsmb/clifile.c return cli_posix_lock_internal(cli, fnum, offset, len, wait_lock, lock_type);
offset 1568 source3/libsmb/clifile.c bool cli_posix_unlock(struct cli_state *cli, int fnum, uint64_t offset, uint64_t len)
offset 1570 source3/libsmb/clifile.c return cli_posix_lock_internal(cli, fnum, offset, len, False, UNLOCK_LOCK);
offset 34 source3/libsmb/cliprint.c unsigned int offset = datap - converter;
offset 36 source3/libsmb/cliprint.c if (offset >= rdrcnt) {
offset 41 source3/libsmb/cliprint.c return &rdata[offset];
offset 49 source3/libsmb/cliquota.c static bool parse_user_quota_record(const char *rdata, unsigned int rdata_count, unsigned int *offset, SMB_NTQUOTA_STRUCT *pqt)
offset 56 source3/libsmb/cliquota.c if (!rdata||!offset||!pqt) {
offset 68 source3/libsmb/cliquota.c *offset = IVAL(rdata,0);
offset 139 source3/libsmb/cliquota.c unsigned int offset;
offset 185 source3/libsmb/cliquota.c ret = parse_user_quota_record(rdata, rdata_count, &offset, pqt);
offset 263 source3/libsmb/cliquota.c unsigned int offset;
offset 317 source3/libsmb/cliquota.c offset = 1;
offset 319 source3/libsmb/cliquota.c ((curdata)&&(curdata_count>=8)&&(offset>0));
offset 320 source3/libsmb/cliquota.c curdata +=offset,curdata_count -= offset) {
offset 322 source3/libsmb/cliquota.c if (!parse_user_quota_record(curdata, curdata_count, &offset, &qt)) {
offset 377 source3/libsmb/cliquota.c offset = 1;
offset 379 source3/libsmb/cliquota.c ((curdata)&&(curdata_count>=8)&&(offset>0));
offset 380 source3/libsmb/cliquota.c curdata +=offset,curdata_count -= offset) {
offset 382 source3/libsmb/cliquota.c if (!parse_user_quota_record(curdata, curdata_count, &offset, &qt)) {
offset 81 source3/libsmb/clireadwrite.c off_t offset, size_t size)
offset 101 source3/libsmb/clireadwrite.c SIVAL(vwv + 3, 0, offset);
offset 108 source3/libsmb/clireadwrite.c if ((uint64_t)offset >> 32) {
offset 111 source3/libsmb/clireadwrite.c (((uint64_t)offset)>>32) & 0xffffffff);
offset 123 source3/libsmb/clireadwrite.c req->data.read.ofs = offset;
offset 214 source3/libsmb/clireadwrite.c off_t offset, size_t size)
offset 226 source3/libsmb/clireadwrite.c state->start_offset = offset;
offset 231 source3/libsmb/clireadwrite.c subreq = cli_read_andx_send(state, ev, cli, fnum, offset, size);
offset 651 source3/libsmb/clireadwrite.c off_t offset, size_t size)
offset 656 source3/libsmb/clireadwrite.c status = cli_pull(cli, fnum, offset, size, size,
offset 671 source3/libsmb/clireadwrite.c off_t offset,
offset 715 source3/libsmb/clireadwrite.c SIVAL(cli->outbuf,smb_vwv3,offset);
offset 733 source3/libsmb/clireadwrite.c SIVAL(cli->outbuf,smb_vwv12,(((uint64_t)offset)>>32) & 0xffffffff);
offset 771 source3/libsmb/clireadwrite.c const char *buf, off_t offset, size_t size)
offset 796 source3/libsmb/clireadwrite.c if (!cli_issue_write(cli, fnum, offset + bsent,
offset 831 source3/libsmb/clireadwrite.c int fnum, char *buf, off_t offset, size_t size1)
offset 850 source3/libsmb/clireadwrite.c SIVAL(cli->outbuf,smb_vwv2,offset);
offset 875 source3/libsmb/clireadwrite.c offset += size;
offset 890 source3/libsmb/clireadwrite.c off_t offset, size_t size)
offset 903 source3/libsmb/clireadwrite.c SIVAL(vwv+3, 0, offset);
offset 918 source3/libsmb/clireadwrite.c SIVAL(vwv+12, 0, (((uint64_t)offset)>>32) & 0xffffffff);
offset 961 source3/libsmb/clireadwrite.c off_t offset;
offset 974 source3/libsmb/clireadwrite.c off_t offset, size_t size)
offset 989 source3/libsmb/clireadwrite.c state->offset = offset;
offset 994 source3/libsmb/clireadwrite.c state->mode, state->buf, state->offset,
offset 1042 source3/libsmb/clireadwrite.c state->offset + state->written, to_write);
offset 219 source3/libsmb/libsmb_compat.c off_t offset,
offset 223 source3/libsmb/libsmb_compat.c return smbc_getFunctionLseek(statcont)(statcont, file, offset, whence);
offset 298 source3/libsmb/libsmb_compat.c off_t offset)
offset 301 source3/libsmb/libsmb_compat.c return smbc_getFunctionLseekdir(statcont)(statcont, file, offset);
offset 435 source3/libsmb/libsmb_dir.c dir->offset = 0;
offset 1432 source3/libsmb/libsmb_dir.c off_t offset)
offset 1434 source3/libsmb/libsmb_dir.c long int l_offset = offset; /* Handle problems of size */
offset 1465 source3/libsmb/libsmb_dir.c if (offset == -1) { /* Seek to the end of the list */
offset 146 source3/libsmb/libsmb_file.c file->offset = 0;
offset 253 source3/libsmb/libsmb_file.c off_t offset;
offset 272 source3/libsmb/libsmb_file.c offset = file->offset;
offset 310 source3/libsmb/libsmb_file.c ret = cli_read(targetcli, file->cli_fd, (char *)buf, offset, count);
offset 320 source3/libsmb/libsmb_file.c file->offset += ret;
offset 340 source3/libsmb/libsmb_file.c off_t offset;
offset 372 source3/libsmb/libsmb_file.c offset = file->offset; /* See "offset" comment in SMBC_read_ctx() */
offset 402 source3/libsmb/libsmb_file.c 0, (char *)buf, offset, count);
offset 411 source3/libsmb/libsmb_file.c file->offset += ret;
offset 706 source3/libsmb/libsmb_file.c off_t offset,
offset 741 source3/libsmb/libsmb_file.c file->offset = offset;
offset 745 source3/libsmb/libsmb_file.c file->offset += offset;
offset 789 source3/libsmb/libsmb_file.c file->offset = size + offset;
offset 799 source3/libsmb/libsmb_file.c return file->offset;
offset 152 source3/libsmb/nmblib.c static bool handle_name_ptrs(unsigned char *ubuf,int *offset,int length,
offset 157 source3/libsmb/nmblib.c while ((ubuf[*offset] & 0xC0) == 0xC0) {
offset 161 source3/libsmb/nmblib.c (*offset) = ((ubuf[*offset] & ~0xC0)<<8) | ubuf[(*offset)+1];
offset 163 source3/libsmb/nmblib.c (*offset) < 0 || (*offset)>(length-2)) {
offset 182 source3/libsmb/nmblib.c int offset = ofs;
offset 184 source3/libsmb/nmblib.c if (length - offset < 2)
offset 188 source3/libsmb/nmblib.c if (!handle_name_ptrs(ubuf,&offset,length,&got_pointer,&ret))
offset 191 source3/libsmb/nmblib.c m = ubuf[offset];
offset 195 source3/libsmb/nmblib.c if ((m & 0xC0) || offset+m+2 > length)
offset 203 source3/libsmb/nmblib.c offset++;
offset 206 source3/libsmb/nmblib.c c1 = ubuf[offset++]-'A';
offset 207 source3/libsmb/nmblib.c c2 = ubuf[offset++]-'A';
offset 229 source3/libsmb/nmblib.c while (ubuf[offset]) {
offset 231 source3/libsmb/nmblib.c if (!handle_name_ptrs(ubuf,&offset,length,&got_pointer,&ret))
offset 234 source3/libsmb/nmblib.c m = ubuf[offset];
offset 244 source3/libsmb/nmblib.c if (m+2+offset>length || n+m+1>sizeof(name->scope))
offset 246 source3/libsmb/nmblib.c offset++;
offset 248 source3/libsmb/nmblib.c name->scope[n++] = (char)ubuf[offset++];
offset 290 source3/libsmb/nmblib.c static int put_nmb_name(char *buf,int offset,struct nmb_name *name)
offset 304 source3/libsmb/nmblib.c buf[offset] = 0x20;
offset 311 source3/libsmb/nmblib.c buf[offset+1+2*m] = 'A' + ((buf1[m]>>4)&0xF);
offset 312 source3/libsmb/nmblib.c buf[offset+2+2*m] = 'A' + (buf1[m]&0xF);
offset 315 source3/libsmb/nmblib.c offset += 33;
offset 318 source3/libsmb/nmblib.c buf[offset] = 0;
offset 325 source3/libsmb/nmblib.c safe_strcpy(&buf[offset+1],name->scope,
offset 328 source3/libsmb/nmblib.c p = &buf[offset+1];
offset 330 source3/libsmb/nmblib.c buf[offset] = PTR_DIFF(p,&buf[offset+1]);
offset 331 source3/libsmb/nmblib.c offset += (buf[offset] + 1);
offset 332 source3/libsmb/nmblib.c p = &buf[offset+1];
offset 334 source3/libsmb/nmblib.c buf[offset] = strlen(&buf[offset+1]);
offset 366 source3/libsmb/nmblib.c static bool parse_alloc_res_rec(char *inbuf,int *offset,int length,
offset 378 source3/libsmb/nmblib.c int l = parse_nmb_name(inbuf,*offset,length,
offset 380 source3/libsmb/nmblib.c (*offset) += l;
offset 381 source3/libsmb/nmblib.c if (!l || (*offset)+10 > length) {
offset 385 source3/libsmb/nmblib.c (*recs)[i].rr_type = RSVAL(inbuf,(*offset));
offset 386 source3/libsmb/nmblib.c (*recs)[i].rr_class = RSVAL(inbuf,(*offset)+2);
offset 387 source3/libsmb/nmblib.c (*recs)[i].ttl = RIVAL(inbuf,(*offset)+4);
offset 388 source3/libsmb/nmblib.c (*recs)[i].rdlength = RSVAL(inbuf,(*offset)+8);
offset 389 source3/libsmb/nmblib.c (*offset) += 10;
offset 391 source3/libsmb/nmblib.c (*offset)+(*recs)[i].rdlength > length) {
offset 395 source3/libsmb/nmblib.c memcpy((*recs)[i].rdata,inbuf+(*offset),(*recs)[i].rdlength);
offset 396 source3/libsmb/nmblib.c (*offset) += (*recs)[i].rdlength;
offset 406 source3/libsmb/nmblib.c static int put_res_rec(char *buf,int offset,struct res_rec *recs,int count)
offset 412 source3/libsmb/nmblib.c int l = put_nmb_name(buf,offset,&recs[i].rr_name);
offset 413 source3/libsmb/nmblib.c offset += l;
offset 416 source3/libsmb/nmblib.c RSSVAL(buf,offset,recs[i].rr_type);
offset 417 source3/libsmb/nmblib.c RSSVAL(buf,offset+2,recs[i].rr_class);
offset 418 source3/libsmb/nmblib.c RSIVAL(buf,offset+4,recs[i].ttl);
offset 419 source3/libsmb/nmblib.c RSSVAL(buf,offset+8,recs[i].rdlength);
offset 420 source3/libsmb/nmblib.c memcpy(buf+offset+10,recs[i].rdata,recs[i].rdlength);
offset 422 source3/libsmb/nmblib.c offset += 10+recs[i].rdlength;
offset 435 source3/libsmb/nmblib.c int offset,
offset 441 source3/libsmb/nmblib.c buf[offset] = (0xC0 | ((ptr_offset >> 8) & 0xFF));
offset 442 source3/libsmb/nmblib.c buf[offset+1] = (ptr_offset & 0xFF);
offset 444 source3/libsmb/nmblib.c offset += 2;
offset 447 source3/libsmb/nmblib.c RSSVAL(buf,offset,rec->rr_type);
offset 448 source3/libsmb/nmblib.c RSSVAL(buf,offset+2,rec->rr_class);
offset 449 source3/libsmb/nmblib.c RSIVAL(buf,offset+4,rec->ttl);
offset 450 source3/libsmb/nmblib.c RSSVAL(buf,offset+8,rec->rdlength);
offset 451 source3/libsmb/nmblib.c memcpy(buf+offset+10,rec->rdata,rec->rdlength);
offset 453 source3/libsmb/nmblib.c offset += 10+rec->rdlength;
offset 468 source3/libsmb/nmblib.c int offset;
offset 489 source3/libsmb/nmblib.c offset = 14;
offset 494 source3/libsmb/nmblib.c offset += parse_nmb_name(inbuf,offset,length,
offset 496 source3/libsmb/nmblib.c offset += parse_nmb_name(inbuf,offset,length,
offset 500 source3/libsmb/nmblib.c if (offset >= length || (length-offset > sizeof(dgram->data)))
offset 503 source3/libsmb/nmblib.c dgram->datasize = length-offset;
offset 504 source3/libsmb/nmblib.c memcpy(dgram->data,inbuf+offset,dgram->datasize);
offset 522 source3/libsmb/nmblib.c int nm_flags,offset;
offset 549 source3/libsmb/nmblib.c offset = parse_nmb_name(inbuf,12,length,
offset 551 source3/libsmb/nmblib.c if (!offset)
offset 554 source3/libsmb/nmblib.c if (length - (12+offset) < 4)
offset 556 source3/libsmb/nmblib.c nmb->question.question_type = RSVAL(inbuf,12+offset);
offset 557 source3/libsmb/nmblib.c nmb->question.question_class = RSVAL(inbuf,12+offset+2);
offset 559 source3/libsmb/nmblib.c offset += 12+4;
offset 561 source3/libsmb/nmblib.c offset = 12;
offset 566 source3/libsmb/nmblib.c !parse_alloc_res_rec(inbuf,&offset,length,&nmb->answers,
offset 571 source3/libsmb/nmblib.c !parse_alloc_res_rec(inbuf,&offset,length,&nmb->nsrecs,
offset 576 source3/libsmb/nmblib.c !parse_alloc_res_rec(inbuf,&offset,length,
offset 847 source3/libsmb/nmblib.c int offset=0;
offset 863 source3/libsmb/nmblib.c offset = 14;
offset 868 source3/libsmb/nmblib.c offset += put_nmb_name((char *)ubuf,offset,&dgram->source_name);
offset 869 source3/libsmb/nmblib.c offset += put_nmb_name((char *)ubuf,offset,&dgram->dest_name);
offset 873 source3/libsmb/nmblib.c memcpy(ubuf+offset,dgram->data,dgram->datasize);
offset 875 source3/libsmb/nmblib.c offset += dgram->datasize;
offset 881 source3/libsmb/nmblib.c dgram->header.dgm_length = (offset - 14);
offset 886 source3/libsmb/nmblib.c return offset;
offset 923 source3/libsmb/nmblib.c int offset=0;
offset 931 source3/libsmb/nmblib.c RSSVAL(ubuf,offset,nmb->header.name_trn_id);
offset 932 source3/libsmb/nmblib.c ubuf[offset+2] = (nmb->header.opcode & 0xF) << 3;
offset 934 source3/libsmb/nmblib.c ubuf[offset+2] |= (1<<7);
offset 937 source3/libsmb/nmblib.c ubuf[offset+2] |= 0x4;
offset 939 source3/libsmb/nmblib.c ubuf[offset+2] |= 0x2;
offset 941 source3/libsmb/nmblib.c ubuf[offset+2] |= 0x1;
offset 944 source3/libsmb/nmblib.c ubuf[offset+3] |= 0x80;
offset 946 source3/libsmb/nmblib.c ubuf[offset+3] |= 0x10;
offset 947 source3/libsmb/nmblib.c ubuf[offset+3] |= (nmb->header.rcode & 0xF);
offset 949 source3/libsmb/nmblib.c RSSVAL(ubuf,offset+4,nmb->header.qdcount);
offset 950 source3/libsmb/nmblib.c RSSVAL(ubuf,offset+6,nmb->header.ancount);
offset 951 source3/libsmb/nmblib.c RSSVAL(ubuf,offset+8,nmb->header.nscount);
offset 952 source3/libsmb/nmblib.c RSSVAL(ubuf,offset+10,nmb->header.arcount);
offset 955 source3/libsmb/nmblib.c offset += 12;
offset 960 source3/libsmb/nmblib.c int extra = put_nmb_name(NULL,offset,
offset 962 source3/libsmb/nmblib.c if (offset + extra > len) {
offset 966 source3/libsmb/nmblib.c offset += put_nmb_name((char *)ubuf,offset,
offset 969 source3/libsmb/nmblib.c RSSVAL(ubuf,offset,nmb->question.question_type);
offset 970 source3/libsmb/nmblib.c RSSVAL(ubuf,offset+2,nmb->question.question_class);
offset 972 source3/libsmb/nmblib.c offset += 4;
offset 978 source3/libsmb/nmblib.c int extra = put_res_rec(NULL,offset,nmb->answers,
offset 980 source3/libsmb/nmblib.c if (offset + extra > len) {
offset 984 source3/libsmb/nmblib.c offset += put_res_rec((char *)ubuf,offset,nmb->answers,
offset 991 source3/libsmb/nmblib.c int extra = put_res_rec(NULL,offset,nmb->nsrecs,
offset 993 source3/libsmb/nmblib.c if (offset + extra > len) {
offset 997 source3/libsmb/nmblib.c offset += put_res_rec((char *)ubuf,offset,nmb->nsrecs,
offset 1018 source3/libsmb/nmblib.c int extra = put_compressed_name_ptr(NULL,offset,
offset 1020 source3/libsmb/nmblib.c if (offset + extra > len) {
offset 1024 source3/libsmb/nmblib.c offset += put_compressed_name_ptr(ubuf,offset,
offset 1029 source3/libsmb/nmblib.c int extra = put_res_rec(NULL,offset,nmb->additional,
offset 1031 source3/libsmb/nmblib.c if (offset + extra > len) {
offset 1035 source3/libsmb/nmblib.c offset += put_res_rec((char *)ubuf,offset,nmb->additional,
offset 1038 source3/libsmb/nmblib.c return offset;
offset 888 source3/libsmb/smbencrypt.c uint32_t offset = i * 16;
offset 889 source3/libsmb/smbencrypt.c sam_pwd_hash(rid, checked_buffer.data + offset, plain_buffer.data + offset, 0);
offset 236 source3/locking/locking.c uint64_t offset,
offset 261 source3/locking/locking.c (double)offset, (double)count, blocking_lock ? "true" :
offset 274 source3/locking/locking.c offset,
offset 296 source3/locking/locking.c uint64_t offset,
offset 311 source3/locking/locking.c (double)offset, (double)count, fsp->fnum, fsp->fsp_name ));
offset 322 source3/locking/locking.c offset,
offset 344 source3/locking/locking.c uint64_t offset,
offset 361 source3/locking/locking.c (double)offset, (double)count, fsp->fnum, fsp->fsp_name ));
offset 371 source3/locking/locking.c offset,
offset 668 source3/locking/locking.c ssize_t offset;
offset 720 source3/locking/locking.c offset = sizeof(*data) +
offset 725 source3/locking/locking.c uint8 *p = result.dptr + offset;
offset 737 source3/locking/locking.c offset = p - result.dptr;
offset 740 source3/locking/locking.c safe_strcpy((char *)result.dptr + offset, lck->servicepath,
offset 741 source3/locking/locking.c result.dsize - offset - 1);
offset 742 source3/locking/locking.c offset += sp_len + 1;
offset 743 source3/locking/locking.c safe_strcpy((char *)result.dptr + offset, lck->filename,
offset 744 source3/locking/locking.c result.dsize - offset - 1);
offset 84 source3/locking/posix.c SMB_OFF_T offset = (SMB_OFF_T)u_offset;
offset 153 source3/locking/posix.c if (offset + count < 0 || offset + count > max_positive_lock_offset) {
offset 154 source3/locking/posix.c count = max_positive_lock_offset - offset;
offset 172 source3/locking/posix.c (double)offset, (double)count ));
offset 174 source3/locking/posix.c *offset_out = offset;
offset 185 source3/locking/posix.c static bool posix_fcntl_lock(files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
offset 189 source3/locking/posix.c DEBUG(8,("posix_fcntl_lock %d %d %.0f %.0f %d\n",fsp->fh->fd,op,(double)offset,(double)count,type));
offset 191 source3/locking/posix.c ret = SMB_VFS_LOCK(fsp, op, offset, count, type);
offset 196 source3/locking/posix.c (double)offset,(double)count));
offset 205 source3/locking/posix.c if (offset & ~((SMB_OFF_T)0x7fffffff)) {
offset 215 source3/locking/posix.c ret = SMB_VFS_LOCK(fsp, op, offset, count, type);
offset 279 source3/locking/posix.c SMB_OFF_T offset;
offset 291 source3/locking/posix.c if(!posix_lock_in_range(&offset, &count, *pu_offset, *pu_count)) {
offset 295 source3/locking/posix.c if (!posix_fcntl_getlock(fsp,&offset,&count,&posix_lock_type)) {
offset 305 source3/locking/posix.c *pu_offset = (uint64_t)offset;
offset 939 source3/locking/posix.c SMB_OFF_T offset;
offset 956 source3/locking/posix.c if(!posix_lock_in_range(&offset, &count, u_offset, u_count)) {
offset 996 source3/locking/posix.c ll->start = offset;
offset 1023 source3/locking/posix.c offset = ll->start;
offset 1027 source3/locking/posix.c posix_lock_type_name(posix_lock_type), (double)offset, (double)count ));
offset 1029 source3/locking/posix.c if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,posix_lock_type)) {
offset 1032 source3/locking/posix.c posix_lock_type_name(posix_lock_type), (double)offset, (double)count, strerror(errno) ));
offset 1045 source3/locking/posix.c offset = ll->start;
offset 1049 source3/locking/posix.c posix_lock_type_name(posix_lock_type), (double)offset, (double)count ));
offset 1051 source3/locking/posix.c posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,F_UNLCK);
offset 1075 source3/locking/posix.c SMB_OFF_T offset;
offset 1093 source3/locking/posix.c if(!posix_lock_in_range(&offset, &count, u_offset, u_count)) {
offset 1114 source3/locking/posix.c ul->start = offset;
offset 1144 source3/locking/posix.c (!ulist || ulist->next != NULL || ulist->start != offset || ulist->size != count)) {
offset 1147 source3/locking/posix.c (double)offset, (double)count ));
offset 1149 source3/locking/posix.c if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,F_RDLCK)) {
offset 1161 source3/locking/posix.c offset = ulist->start;
offset 1165 source3/locking/posix.c (double)offset, (double)count ));
offset 1167 source3/locking/posix.c if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,F_UNLCK)) {
offset 1196 source3/locking/posix.c SMB_OFF_T offset;
offset 1208 source3/locking/posix.c if(!posix_lock_in_range(&offset, &count, u_offset, u_count)) {
offset 1212 source3/locking/posix.c if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,posix_lock_type)) {
offset 1215 source3/locking/posix.c posix_lock_type_name(posix_lock_type), (double)offset, (double)count, strerror(errno) ));
offset 1238 source3/locking/posix.c SMB_OFF_T offset;
offset 1252 source3/locking/posix.c if(!posix_lock_in_range(&offset, &count, u_offset, u_count)) {
offset 1273 source3/locking/posix.c ul->start = offset;
offset 1295 source3/locking/posix.c offset = ulist->start;
offset 1299 source3/locking/posix.c (double)offset, (double)count ));
offset 1301 source3/locking/posix.c if (!posix_fcntl_lock(fsp,SMB_F_SETLK,offset,count,F_UNLCK)) {
offset 35 source3/modules/onefs.h long offset);
offset 167 source3/modules/onefs.h const DATA_BLOB *header, SMB_OFF_T offset,
offset 170 source3/modules/onefs.h ssize_t onefs_sys_recvfile(int fromfd, int tofd, SMB_OFF_T offset,
offset 403 source3/modules/onefs_dir.c onefs_seekdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset)
offset 414 source3/modules/onefs_dir.c return sys_seekdir(dirp, offset);
offset 418 source3/modules/onefs_dir.c if (offset < 0) {
offset 419 source3/modules/onefs_dir.c DEBUG(1, ("Invalid offset %ld passed.\n", offset));
offset 434 source3/modules/onefs_dir.c resume_cookie = rdp_offset31_to_cookie63(offset);
offset 437 source3/modules/onefs_dir.c dsp->dirp, offset, resume_cookie));
offset 471 source3/modules/onefs_dir.c long offset;
offset 490 source3/modules/onefs_dir.c offset = rdp_cookie63_to_offset31(dsp->resume_cookie);
offset 491 source3/modules/onefs_dir.c if (offset < 0) {
offset 499 source3/modules/onefs_dir.c dsp->dirp, offset, dsp->resume_cookie));
offset 501 source3/modules/onefs_dir.c return offset;
offset 217 source3/modules/onefs_system.c const DATA_BLOB *header, SMB_OFF_T offset, size_t count, bool atomic)
offset 255 source3/modules/onefs_system.c ret = sendfile(fromfd, tofd, offset, total, &hdr,
offset 304 source3/modules/onefs_system.c offset += nwritten;
offset 313 source3/modules/onefs_system.c const DATA_BLOB *header, SMB_OFF_T offset,
offset 328 source3/modules/onefs_system.c ret = onefs_sys_do_sendfile(tofd, fromfd, header, offset, count,
offset 431 source3/modules/onefs_system.c ret = onefs_sys_do_sendfile(tofd, fromfd, header, offset,
offset 519 source3/modules/onefs_system.c ssize_t onefs_sys_recvfile(int fromfd, int tofd, SMB_OFF_T offset,
offset 533 source3/modules/onefs_system.c "%lu\n", fromfd, tofd, offset, count));
offset 563 source3/modules/onefs_system.c offset + total_wbytes, count - total_rbytes));
offset 565 source3/modules/onefs_system.c ret = recvfile(tofd, fromfd, offset + total_wbytes,
offset 636 source3/modules/onefs_system.c offset + total_wbytes);
offset 73 source3/modules/vfs_aio_fork.c SMB_OFF_T offset;
offset 318 source3/modules/vfs_aio_fork.c (int)cmd_struct.n, (int)cmd_struct.offset, fd));
offset 345 source3/modules/vfs_aio_fork.c cmd_struct.offset);
offset 350 source3/modules/vfs_aio_fork.c cmd_struct.offset);
offset 577 source3/modules/vfs_aio_fork.c cmd.offset = aiocb->aio_offset;
offset 621 source3/modules/vfs_aio_fork.c cmd.offset = aiocb->aio_offset;
offset 51 source3/modules/vfs_cacheprime.c SMB_OFF_T offset,
offset 67 source3/modules/vfs_cacheprime.c if ((*last + g_readsz) > (offset + count)) {
offset 129 source3/modules/vfs_cacheprime.c SMB_OFF_T offset,
offset 132 source3/modules/vfs_cacheprime.c if (g_readbuf && offset == 0) {
offset 133 source3/modules/vfs_cacheprime.c prime_cache(handle, fromfsp, offset, count);
offset 137 source3/modules/vfs_cacheprime.c header, offset, count);
offset 146 source3/modules/vfs_cacheprime.c SMB_OFF_T offset;
offset 148 source3/modules/vfs_cacheprime.c offset = SMB_VFS_LSEEK(fsp, 0, SEEK_CUR);
offset 149 source3/modules/vfs_cacheprime.c if (offset >= 0 && g_readbuf) {
offset 150 source3/modules/vfs_cacheprime.c prime_cache(handle, fsp, offset, count);
offset 151 source3/modules/vfs_cacheprime.c SMB_VFS_LSEEK(fsp, offset, SEEK_SET);
offset 162 source3/modules/vfs_cacheprime.c SMB_OFF_T offset)
offset 165 source3/modules/vfs_cacheprime.c prime_cache(handle, fsp, offset, count);
offset 168 source3/modules/vfs_cacheprime.c return SMB_VFS_NEXT_PREAD(handle, fsp, data, count, offset);
offset 120 source3/modules/vfs_commit.c SMB_OFF_T offset,
offset 143 source3/modules/vfs_commit.c if ((offset + last_write) >= c->eof) {
offset 152 source3/modules/vfs_commit.c c->eof = offset + last_write;
offset 252 source3/modules/vfs_commit.c SMB_OFF_T offset)
offset 256 source3/modules/vfs_commit.c ret = SMB_VFS_NEXT_PWRITE(handle, fsp, data, count, offset);
offset 258 source3/modules/vfs_commit.c if (commit(handle, fsp, offset, ret) == -1) {
offset 181 source3/modules/vfs_default.c static void vfswrap_seekdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset)
offset 184 source3/modules/vfs_default.c sys_seekdir(dirp, offset);
offset 324 source3/modules/vfs_default.c size_t n, SMB_OFF_T offset)
offset 330 source3/modules/vfs_default.c result = sys_pread(fsp->fh->fd, data, n, offset);
offset 351 source3/modules/vfs_default.c if (SMB_VFS_LSEEK(fsp, offset, SEEK_SET) == -1) {
offset 378 source3/modules/vfs_default.c size_t n, SMB_OFF_T offset)
offset 384 source3/modules/vfs_default.c result = sys_pwrite(fsp->fh->fd, data, n, offset);
offset 401 source3/modules/vfs_default.c if (SMB_VFS_LSEEK(fsp, offset, SEEK_SET) == -1) {
offset 416 source3/modules/vfs_default.c static SMB_OFF_T vfswrap_lseek(vfs_handle_struct *handle, files_struct *fsp, SMB_OFF_T offset, int whence)
offset 424 source3/modules/vfs_default.c result = sys_lseek(fsp->fh->fd, offset, whence);
offset 443 source3/modules/vfs_default.c SMB_OFF_T offset, size_t n)
offset 448 source3/modules/vfs_default.c result = sys_sendfile(tofd, fromfsp->fh->fd, hdr, offset, n);
offset 456 source3/modules/vfs_default.c SMB_OFF_T offset,
offset 462 source3/modules/vfs_default.c result = sys_recvfile(fromfd, tofsp->fh->fd, offset, n);
offset 957 source3/modules/vfs_default.c static bool vfswrap_lock(vfs_handle_struct *handle, files_struct *fsp, int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
offset 962 source3/modules/vfs_default.c result = fcntl_lock(fsp->fh->fd, op, offset, count, type);
offset 144 source3/modules/vfs_dirsort.c long offset)
offset 149 source3/modules/vfs_dirsort.c data->pos = offset;
offset 100 source3/modules/vfs_full_audit.c SMB_STRUCT_DIR *dirp, long offset);
offset 136 source3/modules/vfs_full_audit.c void *data, size_t n, SMB_OFF_T offset);
offset 141 source3/modules/vfs_full_audit.c SMB_OFF_T offset);
offset 143 source3/modules/vfs_full_audit.c SMB_OFF_T offset, int whence);
offset 146 source3/modules/vfs_full_audit.c const DATA_BLOB *hdr, SMB_OFF_T offset,
offset 150 source3/modules/vfs_full_audit.c SMB_OFF_T offset,
offset 184 source3/modules/vfs_full_audit.c int op, SMB_OFF_T offset, SMB_OFF_T count, int type);
offset 1104 source3/modules/vfs_full_audit.c SMB_STRUCT_DIR *dirp, long offset)
offset 1106 source3/modules/vfs_full_audit.c SMB_VFS_NEXT_SEEKDIR(handle, dirp, offset);
offset 1261 source3/modules/vfs_full_audit.c void *data, size_t n, SMB_OFF_T offset)
offset 1265 source3/modules/vfs_full_audit.c result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
offset 1286 source3/modules/vfs_full_audit.c SMB_OFF_T offset)
offset 1290 source3/modules/vfs_full_audit.c result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
offset 1298 source3/modules/vfs_full_audit.c SMB_OFF_T offset, int whence)
offset 1302 source3/modules/vfs_full_audit.c result = SMB_VFS_NEXT_LSEEK(handle, fsp, offset, whence);
offset 1312 source3/modules/vfs_full_audit.c const DATA_BLOB *hdr, SMB_OFF_T offset,
offset 1317 source3/modules/vfs_full_audit.c result = SMB_VFS_NEXT_SENDFILE(handle, tofd, fromfsp, hdr, offset, n);
offset 1327 source3/modules/vfs_full_audit.c SMB_OFF_T offset,
offset 1332 source3/modules/vfs_full_audit.c result = SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n);
offset 1537 source3/modules/vfs_full_audit.c int op, SMB_OFF_T offset, SMB_OFF_T count, int type)
offset 1541 source3/modules/vfs_full_audit.c result = SMB_VFS_NEXT_LOCK(handle, fsp, op, offset, count, type);
offset 60 source3/modules/vfs_onefs.c SMB_OFF_T offset, size_t count)
offset 66 source3/modules/vfs_onefs.c header, offset, count);
offset 72 source3/modules/vfs_onefs.c files_struct *tofsp, SMB_OFF_T offset,
offset 78 source3/modules/vfs_onefs.c result = onefs_sys_recvfile(fromfd, tofsp->fh->fd, offset, count);
offset 195 source3/modules/vfs_prealloc.c SMB_OFF_T offset)
offset 198 source3/modules/vfs_prealloc.c int ret = SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
offset 40 source3/modules/vfs_readahead.c SMB_OFF_T offset,
offset 45 source3/modules/vfs_readahead.c if ( offset % rhd->off_bound == 0) {
offset 47 source3/modules/vfs_readahead.c int err = readahead(fromfsp->fh->fd, offset, (size_t)rhd->len);
offset 50 source3/modules/vfs_readahead.c (unsigned long long)offset,
offset 54 source3/modules/vfs_readahead.c int err = posix_fadvise(fromfsp->fh->fd, offset, (off_t)rhd->len, POSIX_FADV_WILLNEED);
offset 57 source3/modules/vfs_readahead.c (unsigned long long)offset,
offset 71 source3/modules/vfs_readahead.c offset,
offset 83 source3/modules/vfs_readahead.c SMB_OFF_T offset)
offset 87 source3/modules/vfs_readahead.c if ( offset % rhd->off_bound == 0) {
offset 89 source3/modules/vfs_readahead.c int err = readahead(fsp->fh->fd, offset, (size_t)rhd->len);
offset 92 source3/modules/vfs_readahead.c (unsigned long long)offset,
offset 96 source3/modules/vfs_readahead.c int err = posix_fadvise(fsp->fh->fd, offset, (off_t)rhd->len, POSIX_FADV_WILLNEED);
offset 99 source3/modules/vfs_readahead.c (unsigned long long)offset,
offset 109 source3/modules/vfs_readahead.c return SMB_VFS_NEXT_PREAD(handle, fsp, data, count, offset);
offset 132 source3/modules/vfs_shadow_copy.c static void shadow_copy_seekdir(struct vfs_handle_struct *handle, SMB_STRUCT_DIR *_dirp, long offset)
offset 136 source3/modules/vfs_shadow_copy.c if (offset < dirp->num) {
offset 137 source3/modules/vfs_shadow_copy.c dirp->pos = offset ;
offset 350 source3/modules/vfs_smb_traffic_analyzer.c files_struct *fsp, void *data, size_t n, SMB_OFF_T offset)
offset 354 source3/modules/vfs_smb_traffic_analyzer.c result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
offset 383 source3/modules/vfs_smb_traffic_analyzer.c files_struct *fsp, const void *data, size_t n, SMB_OFF_T offset)
offset 387 source3/modules/vfs_smb_traffic_analyzer.c result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
offset 782 source3/modules/vfs_streams_xattr.c size_t n, SMB_OFF_T offset)
offset 793 source3/modules/vfs_streams_xattr.c return SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
offset 806 source3/modules/vfs_streams_xattr.c if ((offset + n) > ea.value.length-1) {
offset 810 source3/modules/vfs_streams_xattr.c offset + n + 1);
offset 818 source3/modules/vfs_streams_xattr.c ea.value.length = offset + n + 1;
offset 819 source3/modules/vfs_streams_xattr.c ea.value.data[offset+n] = 0;
offset 822 source3/modules/vfs_streams_xattr.c memcpy(ea.value.data + offset, data, n);
offset 844 source3/modules/vfs_streams_xattr.c size_t n, SMB_OFF_T offset)
offset 853 source3/modules/vfs_streams_xattr.c return SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
offset 869 source3/modules/vfs_streams_xattr.c if (length <= offset) {
offset 873 source3/modules/vfs_streams_xattr.c overlap = (offset + n) > length ? (length - offset) : n;
offset 874 source3/modules/vfs_streams_xattr.c memcpy(data, ea.value.data + offset, overlap);
offset 882 source3/modules/vfs_streams_xattr.c SMB_OFF_T offset)
offset 893 source3/modules/vfs_streams_xattr.c (double)offset ));
offset 896 source3/modules/vfs_streams_xattr.c return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, offset);
offset 910 source3/modules/vfs_streams_xattr.c offset + 1);
offset 919 source3/modules/vfs_streams_xattr.c if (ea.value.length < offset + 1) {
offset 921 source3/modules/vfs_streams_xattr.c offset + 1 - ea.value.length);
offset 925 source3/modules/vfs_streams_xattr.c ea.value.length = offset + 1;
offset 926 source3/modules/vfs_streams_xattr.c ea.value.data[offset] = 0;
offset 280 source3/modules/vfs_tsmsm.c SMB_OFF_T offset, size_t n)
offset 290 source3/modules/vfs_tsmsm.c return SMB_VFS_NEXT_SENDFILE(handle, tofd, fsp, hdr, offset, n);
offset 296 source3/modules/vfs_tsmsm.c void *data, size_t n, SMB_OFF_T offset) {
offset 300 source3/modules/vfs_tsmsm.c result = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
offset 314 source3/modules/vfs_tsmsm.c void *data, size_t n, SMB_OFF_T offset) {
offset 318 source3/modules/vfs_tsmsm.c result = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
offset 128 source3/printing/notify.c size_t msg_count = 0, offset = 0;
offset 143 source3/printing/notify.c offset += (pq->buflen + 4);
offset 147 source3/printing/notify.c offset += 4; /* For count. */
offset 149 source3/printing/notify.c buf = (char *)TALLOC(send_ctx, offset);
offset 157 source3/printing/notify.c offset = 0;
offset 158 source3/printing/notify.c SIVAL(buf,offset,msg_count);
offset 159 source3/printing/notify.c offset += 4;
offset 164 source3/printing/notify.c SIVAL(buf,offset,pq->buflen);
offset 165 source3/printing/notify.c offset += 4;
offset 166 source3/printing/notify.c memcpy(buf + offset, pq->buf, pq->buflen);
offset 167 source3/printing/notify.c offset += pq->buflen;
offset 192 source3/printing/notify.c (uint8 *)buf, offset);
offset 550 source3/printing/notify.c size_t i, num_pids, offset;
offset 587 source3/printing/notify.c for( i = 0, offset = 0; i < num_pids; offset += 8, i++)
offset 588 source3/printing/notify.c pid_list[i] = (pid_t)IVAL(data.dptr, offset);
offset 1160 source3/registry/reg_backend_db.c ptrdiff_t offset = p - buf;
offset 1161 source3/registry/reg_backend_db.c SIVAL(buf, 4 + 4*i, offset);
offset 1162 source3/registry/reg_backend_db.c strlcpy(p, sorted_subkeys[i], len-offset);
offset 36 source3/registry/regfio.c static int write_block( REGF_FILE *file, prs_struct *ps, uint32 offset )
offset 53 source3/registry/regfio.c if ( lseek( file->fd, offset, SEEK_SET ) == -1 ) {
offset 454 source3/registry/regfio.c static REGF_HBIN* read_hbin_block( REGF_FILE *file, off_t offset )
offset 461 source3/registry/regfio.c hbin->file_off = offset;
offset 464 source3/registry/regfio.c if ( read_block( file, &hbin->ps, offset, 0 ) == -1 )
offset 545 source3/registry/regfio.c static bool hbin_contains_offset( REGF_HBIN *hbin, uint32 offset )
offset 550 source3/registry/regfio.c if ( (offset > hbin->first_hbin_off) && (offset < (hbin->first_hbin_off+hbin->block_size)) )
offset 561 source3/registry/regfio.c static REGF_HBIN* lookup_hbin_block( REGF_FILE *file, uint32 offset )
offset 570 source3/registry/regfio.c if ( hbin_contains_offset( hbin, offset ) )
offset 588 source3/registry/regfio.c } while ( hbin && !hbin_contains_offset( hbin, offset ) );
offset 759 source3/registry/regfio.c uint32 offset;
offset 792 source3/registry/regfio.c offset = prs_offset( ps );
offset 793 source3/registry/regfio.c offset += 2; /* skip 2 bytes */
offset 794 source3/registry/regfio.c prs_set_offset( ps, offset );
offset 941 source3/registry/regfio.c static REGF_SK_REC* find_sk_record_by_offset( REGF_FILE *file, uint32 offset )
offset 946 source3/registry/regfio.c if ( p_sk->sk_off == offset )
offset 1333 source3/registry/regfio.c uint32 offset = REGF_BLOCKSIZE;
offset 1350 source3/registry/regfio.c while ( (hbin = read_hbin_block( file, offset )) ) {
offset 1366 source3/registry/regfio.c offset += hbin->block_size;
offset 150 source3/rpc_parse/parse_misc.c str->offset = 0;
offset 181 source3/rpc_parse/parse_misc.c str->offset = 0;
offset 365 source3/rpc_parse/parse_prs.c bool prs_set_offset(prs_struct *ps, uint32 offset)
offset 367 source3/rpc_parse/parse_prs.c if ((offset > ps->data_offset)
offset 368 source3/rpc_parse/parse_prs.c && !prs_grow(ps, offset - ps->data_offset)) {
offset 372 source3/rpc_parse/parse_prs.c ps->data_offset = offset;
offset 1253 source3/rpc_parse/parse_prs.c bool prs_uint16_pre(const char *name, prs_struct *ps, int depth, uint16 *data16, uint32 *offset)
offset 1255 source3/rpc_parse/parse_prs.c *offset = ps->data_offset;
offset 1300 source3/rpc_parse/parse_prs.c bool prs_uint32_pre(const char *name, prs_struct *ps, int depth, uint32 *data32, uint32 *offset)
offset 1302 source3/rpc_parse/parse_prs.c *offset = ps->data_offset;
offset 1364 source3/rpc_parse/parse_prs.c bool prs_hash1(prs_struct *ps, uint32 offset, int len)
offset 1369 source3/rpc_parse/parse_prs.c q = &q[offset];
offset 500 source3/rpc_server/srv_eventlog_nt.c record_number = r->in.offset;
offset 564 source3/rpc_server/srv_eventlog_nt.c if (r->in.offset == 0 && record_number == 0 && *r->out.sent_size == 0) {
offset 1114 source3/rpc_server/srv_spoolss_nt.c size_t offset = 0;
offset 1118 source3/rpc_server/srv_spoolss_nt.c offset += tdb_unpack((uint8_t *)buf + offset, len - offset, "f",
offset 1121 source3/rpc_server/srv_spoolss_nt.c offset += tdb_unpack((uint8_t *)buf + offset, len - offset, "ddddddd",
offset 1126 source3/rpc_server/srv_spoolss_nt.c tdb_unpack((uint8_t *)buf + offset, len - offset, "dd",
offset 1129 source3/rpc_server/srv_spoolss_nt.c tdb_unpack((uint8_t *)buf + offset, len - offset, "B",
offset 63 source3/rpcclient/cmd_eventlog.c uint32_t offset = 0;
offset 75 source3/rpcclient/cmd_eventlog.c offset = atoi(argv[2]);
offset 102 source3/rpcclient/cmd_eventlog.c offset,
offset 117 source3/rpcclient/cmd_eventlog.c offset,
offset 155 source3/rpcclient/cmd_eventlog.c offset++;
offset 134 source3/smbd/blocking.c uint64_t offset,
offset 173 source3/smbd/blocking.c blr->offset = offset;
offset 184 source3/smbd/blocking.c offset,
offset 263 source3/smbd/blocking.c fsp->last_lock_failure.start = blr->offset;
offset 288 source3/smbd/blocking.c uint64_t count = (uint64_t)0, offset = (uint64_t) 0;
offset 314 source3/smbd/blocking.c offset = get_lock_offset( data, i, large_file_format, &err);
offset 325 source3/smbd/blocking.c offset,
offset 380 source3/smbd/blocking.c uint64_t count = (uint64_t)0, offset = (uint64_t)0;
offset 400 source3/smbd/blocking.c offset = get_lock_offset( data, blr->lock_num, large_file_format, &err);
offset 411 source3/smbd/blocking.c offset,
offset 474 source3/smbd/blocking.c blr->offset,
offset 551 source3/smbd/blocking.c blr->offset,
offset 562 source3/smbd/blocking.c blr->offset,
offset 603 source3/smbd/blocking.c blr->offset,
offset 684 source3/smbd/blocking.c blr->offset,
offset 722 source3/smbd/blocking.c blr->offset,
offset 785 source3/smbd/blocking.c uint64_t offset,
offset 806 source3/smbd/blocking.c offset == blr->offset &&
offset 37 source3/smbd/dir.c long offset;
offset 43 source3/smbd/dir.c long offset;
offset 531 source3/smbd/dir.c void dptr_SeekDir(struct dptr_struct *dptr, long offset)
offset 533 source3/smbd/dir.c SeekDir(dptr->dir_hnd, offset);
offset 675 source3/smbd/dir.c dptr->dir_hnd->offset = *poffset = END_OF_DIRECTORY_OFFSET;
offset 687 source3/smbd/dir.c if (!dptr->has_wild && (dptr->dir_hnd->offset == END_OF_DIRECTORY_OFFSET)) {
offset 700 source3/smbd/dir.c void dptr_DirCacheAdd(struct dptr_struct *dptr, const char *name, long offset)
offset 702 source3/smbd/dir.c DirCacheAdd(dptr->dir_hnd, name, offset);
offset 721 source3/smbd/dir.c uint32 offset;
offset 726 source3/smbd/dir.c offset = (uint32)TellDir(dptr->dir_hnd);
offset 728 source3/smbd/dir.c (long)dptr->dir_hnd,(int)offset));
offset 730 source3/smbd/dir.c SIVAL(buf,1,offset);
offset 742 source3/smbd/dir.c uint32 offset;
offset 750 source3/smbd/dir.c offset = IVAL(buf,1);
offset 751 source3/smbd/dir.c if (offset == (uint32)-1) {
offset 754 source3/smbd/dir.c seekoff = (long)offset;
offset 1160 source3/smbd/dir.c *poffset = dirp->offset = START_OF_DIRECTORY_OFFSET;
offset 1162 source3/smbd/dir.c *poffset = dirp->offset = DOT_DOT_DIRECTORY_OFFSET;
offset 1168 source3/smbd/dir.c *poffset = dirp->offset = END_OF_DIRECTORY_OFFSET;
offset 1182 source3/smbd/dir.c *poffset = dirp->offset = SMB_VFS_TELLDIR(conn, dirp->dir);
offset 1186 source3/smbd/dir.c *poffset = dirp->offset = END_OF_DIRECTORY_OFFSET;
offset 1198 source3/smbd/dir.c dirp->offset = START_OF_DIRECTORY_OFFSET;
offset 1206 source3/smbd/dir.c void SeekDir(struct smb_Dir *dirp, long offset)
offset 1208 source3/smbd/dir.c if (offset != dirp->offset) {
offset 1209 source3/smbd/dir.c if (offset == START_OF_DIRECTORY_OFFSET) {
offset 1210 source3/smbd/dir.c RewindDir(dirp, &offset);
offset 1218 source3/smbd/dir.c } else if (offset == DOT_DOT_DIRECTORY_OFFSET) {
offset 1219 source3/smbd/dir.c RewindDir(dirp, &offset);
offset 1226 source3/smbd/dir.c } else if (offset == END_OF_DIRECTORY_OFFSET) {
offset 1229 source3/smbd/dir.c SMB_VFS_SEEKDIR(dirp->conn, dirp->dir, offset);
offset 1231 source3/smbd/dir.c dirp->offset = offset;
offset 1241 source3/smbd/dir.c return(dirp->offset);
offset 1248 source3/smbd/dir.c void DirCacheAdd(struct smb_Dir *dirp, const char *name, long offset)
offset 1270 source3/smbd/dir.c e->offset = offset;
offset 1289 source3/smbd/dir.c *poffset = e->offset;
offset 1290 source3/smbd/dir.c SeekDir(dirp, e->offset);
offset 1297 source3/smbd/dir.c *poffset = e->offset;
offset 1298 source3/smbd/dir.c SeekDir(dirp, e->offset);
offset 39 source3/smbd/fileio.c if( n > wcp->data_size || pos < wcp->offset || pos + n > wcp->offset + wcp->data_size) {
offset 43 source3/smbd/fileio.c memcpy(data, wcp->data + (pos - wcp->offset), n);
offset 163 source3/smbd/fileio.c wcp->file_size = wcp->offset + wcp->data_size;
offset 365 source3/smbd/fileio.c fsp->fsp_name, fsp->fh->fd, (double)pos, (unsigned int)n, (double)wcp->offset, (unsigned int)wcp->data_size));
offset 377 source3/smbd/fileio.c if ((pos >= wcp->offset) && (pos <= wcp->offset + wcp->data_size)) {
offset 395 source3/smbd/fileio.c size_t data_used = MIN((wcp->alloc_size - (pos - wcp->offset)), n);
offset 397 source3/smbd/fileio.c memcpy(wcp->data + (pos - wcp->offset), data, data_used);
offset 403 source3/smbd/fileio.c if(pos + data_used > wcp->offset + wcp->data_size) {
offset 404 source3/smbd/fileio.c wcp->data_size = pos + data_used - wcp->offset;
offset 411 source3/smbd/fileio.c if (wcp->offset + wcp->data_size > wcp->file_size) {
offset 441 source3/smbd/fileio.c } else if ((pos < wcp->offset) && (pos + n > wcp->offset) &&
offset 442 source3/smbd/fileio.c (pos + n <= wcp->offset + wcp->alloc_size)) {
offset 460 source3/smbd/fileio.c size_t data_used = pos + n - wcp->offset;
offset 468 source3/smbd/fileio.c if(pos + n > wcp->offset + wcp->data_size) {
offset 469 source3/smbd/fileio.c wcp->data_size = pos + n - wcp->offset;
offset 476 source3/smbd/fileio.c if (wcp->offset + wcp->data_size > wcp->file_size) {
offset 501 source3/smbd/fileio.c (wcp->offset + wcp->data_size == wcp->file_size) &&
offset 502 source3/smbd/fileio.c (pos > wcp->offset + wcp->data_size) &&
offset 503 source3/smbd/fileio.c (pos < wcp->offset + wcp->alloc_size) ) {
offset 528 source3/smbd/fileio.c if(pos + n <= wcp->offset + wcp->alloc_size) {
offset 531 source3/smbd/fileio.c data_used = wcp->offset + wcp->alloc_size - pos;
offset 539 source3/smbd/fileio.c pos - (wcp->offset + wcp->data_size) );
offset 541 source3/smbd/fileio.c memcpy(wcp->data + (pos - wcp->offset), data, data_used);
offset 547 source3/smbd/fileio.c if(pos + data_used > wcp->offset + wcp->data_size) {
offset 548 source3/smbd/fileio.c wcp->data_size = pos + data_used - wcp->offset;
offset 555 source3/smbd/fileio.c if (wcp->offset + wcp->data_size > wcp->file_size) {
offset 588 source3/smbd/fileio.c (wcp->file_size == wcp->offset + wcp->data_size) &&
offset 617 source3/smbd/fileio.c wcp->offset = wcp->file_size;
offset 626 source3/smbd/fileio.c if (wcp->offset + wcp->data_size > wcp->file_size) {
offset 676 source3/smbd/fileio.c len = %u\n",fsp->fh->fd, (double)pos, (unsigned int)n, (double)wcp->offset, (unsigned int)wcp->data_size ));
offset 696 source3/smbd/fileio.c if ((pos <= wcp->offset) &&
offset 697 source3/smbd/fileio.c (pos + n >= wcp->offset + wcp->data_size) ) {
offset 699 source3/smbd/fileio.c cache: fd = %d, off=%.0f, size=%u\n", fsp->fh->fd, (double)wcp->offset, (unsigned int)wcp->data_size ));
offset 723 source3/smbd/fileio.c (double)wcp->offset, (unsigned int)wcp->data_size ));
offset 762 source3/smbd/fileio.c wcp->offset = pos;
offset 771 source3/smbd/fileio.c if (wcp->offset + wcp->data_size > wcp->file_size) {
offset 777 source3/smbd/fileio.c (double)wcp->offset, (unsigned int)wcp->data_size, (unsigned int)n));
offset 836 source3/smbd/fileio.c wcp->offset = 0;
offset 901 source3/smbd/fileio.c fsp->fh->fd, (double)wcp->offset, (unsigned int)data_size));
offset 909 source3/smbd/fileio.c ret = real_write_file(NULL, fsp, wcp->data, wcp->offset, data_size);
offset 915 source3/smbd/fileio.c if ((ret != -1) && (wcp->offset + ret > wcp->file_size)) {
offset 916 source3/smbd/fileio.c wcp->file_size = wcp->offset + ret;
offset 1893 source3/smbd/lanman.c unsigned int offset;
offset 1933 source3/smbd/lanman.c offset = IVAL(data, 16);
offset 1934 source3/smbd/lanman.c if (offset >= mdrcnt) {
offset 1940 source3/smbd/lanman.c if (skip_string(data,mdrcnt,data+offset) == NULL) {
offset 1943 source3/smbd/lanman.c pull_ascii_fstring(comment, offset? (data+offset) : "");
offset 1945 source3/smbd/lanman.c offset = IVAL(data, 26);
offset 1947 source3/smbd/lanman.c if (offset >= mdrcnt) {
offset 1953 source3/smbd/lanman.c if (skip_string(data,mdrcnt,data+offset) == NULL) {
offset 1958 source3/smbd/lanman.c offset ? (data+offset) : "", &converted_size))
offset 949 source3/smbd/msdfs.c int offset;
offset 1015 source3/smbd/msdfs.c offset = 8;
offset 1021 source3/smbd/msdfs.c SSVAL(pdata,offset,2); /* version 2 */
offset 1022 source3/smbd/msdfs.c SSVAL(pdata,offset+2,VERSION2_REFERRAL_SIZE);
offset 1024 source3/smbd/msdfs.c SSVAL(pdata,offset+4,1);
offset 1026 source3/smbd/msdfs.c SSVAL(pdata,offset+4,0);
offset 1030 source3/smbd/msdfs.c SSVAL(pdata,offset+6,0);
offset 1031 source3/smbd/msdfs.c SIVAL(pdata,offset+8,ref->proximity);
offset 1032 source3/smbd/msdfs.c SIVAL(pdata,offset+12,ref->ttl);
offset 1034 source3/smbd/msdfs.c SSVAL(pdata,offset+16,uni_reqpathoffset1-offset);
offset 1035 source3/smbd/msdfs.c SSVAL(pdata,offset+18,uni_reqpathoffset2-offset);
offset 1042 source3/smbd/msdfs.c SSVAL(pdata,offset+20,uni_curroffset-offset);
offset 1045 source3/smbd/msdfs.c offset += VERSION2_REFERRAL_SIZE;
offset 1065 source3/smbd/msdfs.c int offset,i=0;
offset 1114 source3/smbd/msdfs.c offset = 8;
offset 1119 source3/smbd/msdfs.c SSVAL(pdata,offset,3); /* version 3 */
offset 1120 source3/smbd/msdfs.c SSVAL(pdata,offset+2,VERSION3_REFERRAL_SIZE);
offset 1122 source3/smbd/msdfs.c SSVAL(pdata,offset+4,1);
offset 1124 source3/smbd/msdfs.c SSVAL(pdata,offset+4,0);
offset 1128 source3/smbd/msdfs.c SSVAL(pdata,offset+6,0);
offset 1129 source3/smbd/msdfs.c SIVAL(pdata,offset+8,ref->ttl);
offset 1131 source3/smbd/msdfs.c SSVAL(pdata,offset+12,uni_reqpathoffset1-offset);
offset 1132 source3/smbd/msdfs.c SSVAL(pdata,offset+14,uni_reqpathoffset2-offset);
offset 1137 source3/smbd/msdfs.c SSVAL(pdata,offset+16,uni_curroffset-offset);
offset 1139 source3/smbd/msdfs.c memset(pdata+offset+18,'\0',16);
offset 1142 source3/smbd/msdfs.c offset += VERSION3_REFERRAL_SIZE;
offset 803 source3/smbd/nttrans.c size_t offset = 0;
offset 809 source3/smbd/nttrans.c while (offset + 4 <= data_size) {
offset 810 source3/smbd/nttrans.c size_t next_offset = IVAL(pdata,offset);
offset 811 source3/smbd/nttrans.c struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset + 4, data_size - offset - 4, NULL);
offset 821 source3/smbd/nttrans.c offset += next_offset;
offset 2490 source3/smbd/reply.c long offset = 0;
offset 2520 source3/smbd/reply.c while ((dname = ReadDirName(dir_hnd, &offset, &st))) {
offset 4617 source3/smbd/reply.c uint64_t count,offset;
offset 4638 source3/smbd/reply.c offset = (uint64_t)IVAL(req->vwv+3, 0);
offset 4641 source3/smbd/reply.c fsp->fh->fd, fsp->fnum, (double)offset, (double)count));
offset 4647 source3/smbd/reply.c offset,
offset 4676 source3/smbd/reply.c uint64_t count,offset;
offset 4696 source3/smbd/reply.c offset = (uint64_t)IVAL(req->vwv+3, 0);
offset 4702 source3/smbd/reply.c offset,
offset 4712 source3/smbd/reply.c fsp->fh->fd, fsp->fnum, (double)offset, (double)count ) );
offset 5160 source3/smbd/reply.c long offset = 0;
offset 5168 source3/smbd/reply.c while((dname = ReadDirName(dir_hnd, &offset, &st))) {
offset 5881 source3/smbd/reply.c long offset = 0;
offset 6065 source3/smbd/reply.c while ((dname = ReadDirName(dir_hnd, &offset, &sbuf1))) {
offset 6644 source3/smbd/reply.c long offset = 0;
offset 6667 source3/smbd/reply.c while ((dname = ReadDirName(dir_hnd, &offset, &sbuf1))) {
offset 6852 source3/smbd/reply.c uint64_t offset = 0;
offset 6857 source3/smbd/reply.c offset = (uint64_t)IVAL(data,SMB_LKOFF_OFFSET(data_offset));
offset 6861 source3/smbd/reply.c offset = (((uint64_t) IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset))) << 32) |
offset 6888 source3/smbd/reply.c offset = (uint64_t)IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset));
offset 6892 source3/smbd/reply.c return offset;
offset 6907 source3/smbd/reply.c uint64_t count = 0, offset = 0;
offset 7032 source3/smbd/reply.c offset = get_lock_offset( data, i, large_file_format, &err);
offset 7044 source3/smbd/reply.c "pid %u, file %s\n", (double)offset, (double)count,
offset 7051 source3/smbd/reply.c offset,
offset 7081 source3/smbd/reply.c offset = get_lock_offset( data, i, large_file_format, &err);
offset 7093 source3/smbd/reply.c "%u, file %s timeout = %d\n", (double)offset,
offset 7108 source3/smbd/reply.c offset,
offset 7127 source3/smbd/reply.c offset,
offset 7140 source3/smbd/reply.c offset,
offset 7182 source3/smbd/reply.c offset,
offset 7215 source3/smbd/reply.c offset = get_lock_offset( data, i, large_file_format,
offset 7232 source3/smbd/reply.c offset,
offset 480 source3/smbd/trans2.c size_t converted_size, offset = 0;
offset 482 source3/smbd/trans2.c while (offset + 2 < data_size) {
offset 484 source3/smbd/trans2.c unsigned int namelen = CVAL(pdata,offset);
offset 486 source3/smbd/trans2.c offset++; /* Go past the namelen byte. */
offset 489 source3/smbd/trans2.c if ((offset + namelen < offset) || (offset + namelen < namelen) ||
offset 490 source3/smbd/trans2.c (offset > data_size) || (namelen > data_size) ||
offset 491 source3/smbd/trans2.c (offset + namelen >= data_size)) {
offset 495 source3/smbd/trans2.c if (pdata[offset + namelen] != '\0') {
offset 498 source3/smbd/trans2.c if (!pull_ascii_talloc(ctx, &eal->ea.name, &pdata[offset],
offset 507 source3/smbd/trans2.c offset += (namelen + 1); /* Go past the name + terminating zero. */
offset 583 source3/smbd/trans2.c size_t offset = 0;
offset 586 source3/smbd/trans2.c while (offset < data_size) {
offset 587 source3/smbd/trans2.c struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset, data_size - offset, &bytes_used);
offset 594 source3/smbd/trans2.c offset += bytes_used;
offset 4730 source3/smbd/trans2.c uint64_t offset;
offset 4758 source3/smbd/trans2.c offset = (((uint64_t) IVAL(pdata,(POSIX_LOCK_START_OFFSET+4))) << 32) |
offset 4763 source3/smbd/trans2.c offset = (uint64_t)IVAL(pdata,POSIX_LOCK_START_OFFSET);
offset 4770 source3/smbd/trans2.c &offset,
offset 4782 source3/smbd/trans2.c SIVAL(pdata, POSIX_LOCK_START_OFFSET, (uint32)(offset & 0xFFFFFFFF));
offset 4783 source3/smbd/trans2.c SIVAL(pdata, POSIX_LOCK_START_OFFSET + 4, (uint32)((offset >> 32) & 0xFFFFFFFF));
offset 4787 source3/smbd/trans2.c SIVAL(pdata, POSIX_LOCK_START_OFFSET, offset);
offset 5550 source3/smbd/trans2.c uint64_t offset;
offset 5597 source3/smbd/trans2.c offset = (((uint64_t) IVAL(pdata,(POSIX_LOCK_START_OFFSET+4))) << 32) |
offset 5602 source3/smbd/trans2.c offset = (uint64_t)IVAL(pdata,POSIX_LOCK_START_OFFSET);
offset 5612 source3/smbd/trans2.c (double)offset ));
offset 5619 source3/smbd/trans2.c offset,
offset 5628 source3/smbd/trans2.c offset,
offset 5650 source3/smbd/trans2.c offset,
offset 413 source3/smbd/vfs.c size_t byte_count, SMB_OFF_T offset)
offset 420 source3/smbd/vfs.c byte_count - total, offset + total);
offset 474 source3/smbd/vfs.c SMB_OFF_T offset)
offset 486 source3/smbd/vfs.c offset,
offset 492 source3/smbd/vfs.c offset + total);
offset 620 source3/smbd/vfs.c SMB_OFF_T offset;
offset 650 source3/smbd/vfs.c offset = st.st_size;
offset 657 source3/smbd/vfs.c pwrite_ret = SMB_VFS_PWRITE(fsp, sparse_buf, curr_write_size, offset + total);
offset 68 source3/torture/cmd_vfs.c size_t offset;
offset 80 source3/torture/cmd_vfs.c offset = atoi(argv[1]);
offset 83 source3/torture/cmd_vfs.c offset = 0;
offset 86 source3/torture/cmd_vfs.c if ((offset + len) > vfs->data_size) {
offset 90 source3/torture/cmd_vfs.c dump_data(0, (uint8 *)(vfs->data) + offset, len);
offset 468 source3/torture/cmd_vfs.c int fd, offset, whence;
offset 477 source3/torture/cmd_vfs.c offset = atoi(argv[2]);
offset 485 source3/torture/cmd_vfs.c pos = SMB_VFS_LSEEK(vfs->files[fd], offset, whence);
offset 879 source3/torture/cmd_vfs.c long offset;
offset 916 source3/torture/cmd_vfs.c if (sscanf(argv[3], "%ld", &offset) == 0) {
offset 946 source3/torture/cmd_vfs.c printf("lock: debug lock(fd=%d, op=%d, offset=%ld, count=%ld, type=%d))\n", fd, op, offset, count, type);
offset 948 source3/torture/cmd_vfs.c if (SMB_VFS_LOCK(vfs->files[fd], op, offset, count, type) == False) {
offset 181 source3/torture/nbio.c void nb_writex(int handle, int offset, int size, int ret_size)
offset 188 source3/torture/nbio.c if (cli_write(c, ftable[i].fd, 0, buf, offset, size) != ret_size) {
offset 197 source3/torture/nbio.c void nb_readx(int handle, int offset, int size, int ret_size)
offset 202 source3/torture/nbio.c if ((ret=cli_read(c, ftable[i].fd, buf, offset, size)) != ret_size) {
offset 204 source3/torture/nbio.c line_count, handle, offset, size, ret, ftable[i].fd, errno, strerror(errno));
offset 407 source3/torture/torture.c static bool wait_lock(struct cli_state *c, int fnum, uint32 offset, uint32 len)
offset 409 source3/torture/torture.c while (!cli_lock(c, fnum, offset, len, -1, WRITE_LOCK)) {
offset 1505 source3/torture/torture.c uint32 offset;
offset 1508 source3/torture/torture.c #define NEXT_OFFSET offset += (~(uint32)0) / torture_numops
offset 1531 source3/torture/torture.c for (offset=i=0;i<torture_numops;i++) {
offset 1533 source3/torture/torture.c if (!cli_lock(cli1, fnum1, offset-1, 1, 0, WRITE_LOCK)) {
offset 1540 source3/torture/torture.c if (!cli_lock(cli2, fnum2, offset-2, 1, 0, WRITE_LOCK)) {
offset 1548 source3/torture/torture.c for (offset=i=0;i<torture_numops;i++) {
offset 1551 source3/torture/torture.c if (cli_lock(cli1, fnum1, offset-2, 1, 0, WRITE_LOCK)) {
offset 1556 source3/torture/torture.c if (cli_lock(cli2, fnum2, offset-1, 1, 0, WRITE_LOCK)) {
offset 1561 source3/torture/torture.c if (cli_lock(cli1, fnum1, offset-1, 1, 0, WRITE_LOCK)) {
offset 1566 source3/torture/torture.c if (cli_lock(cli2, fnum2, offset-2, 1, 0, WRITE_LOCK)) {
offset 1572 source3/torture/torture.c for (offset=i=0;i<torture_numops;i++) {
offset 1575 source3/torture/torture.c if (!cli_unlock(cli1, fnum1, offset-1, 1)) {
offset 1582 source3/torture/torture.c if (!cli_unlock(cli2, fnum2, offset-2, 1)) {
offset 163 source3/utils/log2pcaphex.c unsigned char *newdata; long offset = 0;
offset 173 source3/utils/log2pcaphex.c memcpy(newdata+offset, &HDR_IP, sizeof(HDR_IP));offset+=sizeof(HDR_IP);
offset 174 source3/utils/log2pcaphex.c memcpy(newdata+offset, &HDR_TCP, sizeof(HDR_TCP));offset+=sizeof(HDR_TCP);
offset 175 source3/utils/log2pcaphex.c memcpy(newdata+offset,data,length);
offset 177 source3/utils/log2pcaphex.c print_pcap_packet(out, newdata, newlen, actual_length+offset);
offset 52 source4/client/cifsdd.h typedef bool (*dd_seek_func)(void * handle, uint64_t offset);
offset 41 source4/client/cifsddio.c static bool fd_seek_func(void * handle, uint64_t offset)
offset 45 source4/client/cifsddio.c ret = lseek(IO_HANDLE_TO_FD(handle), offset, SEEK_SET);
offset 147 source4/client/cifsddio.c uint64_t offset;
offset 152 source4/client/cifsddio.c static bool smb_seek_func(void * handle, uint64_t offset)
offset 154 source4/client/cifsddio.c IO_HANDLE_TO_SMB(handle)->offset = offset;
offset 170 source4/client/cifsddio.c r.readx.in.offset = smbh->offset;
offset 187 source4/client/cifsddio.c SMB_ASSERT((smbh->offset + r.readx.out.nread) >= smbh->offset);
offset 190 source4/client/cifsddio.c smbh->offset += r.readx.out.nread;
offset 206 source4/client/cifsddio.c w.writex.in.offset = smbh->offset;
offset 219 source4/client/cifsddio.c smbh->offset += w.writex.out.nwritten;
offset 123 source4/dsdb/repl/replicated_objects.c uint32_t offset = i * 16;
offset 124 source4/dsdb/repl/replicated_objects.c sam_rid_crypt(rid, checked_buffer.data + offset, plain_buffer.data + offset, 0);
offset 53 source4/heimdal/lib/asn1/asn1_gen.c size_t offset = 0;
offset 111 source4/heimdal/lib/asn1/asn1_gen.c line, (unsigned long)offset, c, ty, ta, l,
offset 125 source4/heimdal/lib/asn1/asn1_gen.c offset += sz;
offset 138 source4/heimdal/lib/asn1/asn1_gen.c offset += datalen;
offset 143 source4/heimdal/lib/asn1/asn1_gen.c printf("line: eof offset: %lu\n", (unsigned long)offset);
offset 2072 source4/heimdal/lib/asn1/lex.c int offset = (yy_c_buf_p) - (yytext_ptr);
offset 2108 source4/heimdal/lib/asn1/lex.c (yy_c_buf_p) = (yytext_ptr) + offset;
offset 1248 source4/heimdal/lib/com_err/lex.c int offset = (yy_c_buf_p) - (yytext_ptr);
offset 1284 source4/heimdal/lib/com_err/lex.c (yy_c_buf_p) = (yytext_ptr) + offset;
offset 501 source4/heimdal/lib/gssapi/krb5/init_sec_context.c int32_t offset = 0, oldoffset;
offset 600 source4/heimdal/lib/gssapi/krb5/init_sec_context.c offset = (p[0] <<24) | (p[1] << 16) | (p[2] << 8) | (p[3] << 0);
offset 605 source4/heimdal/lib/gssapi/krb5/init_sec_context.c if (offset) {
offset 607 source4/heimdal/lib/gssapi/krb5/init_sec_context.c krb5_set_kdc_sec_offset (context, offset, -1);
offset 620 source4/heimdal/lib/gssapi/krb5/init_sec_context.c if (offset)
offset 633 source4/heimdal/lib/gssapi/krb5/init_sec_context.c if (offset)
offset 219 source4/heimdal/lib/gssapi/krb5/set_sec_context_option.c OM_uint32 offset;
offset 222 source4/heimdal/lib/gssapi/krb5/set_sec_context_option.c maj_stat = get_int32(minor_status, value, &offset);
offset 226 source4/heimdal/lib/gssapi/krb5/set_sec_context_option.c t = time(NULL) + offset;
offset 874 source4/heimdal/lib/gssapi/mech/gss_krb5.c gsskrb5_set_time_offset(int offset)
offset 879 source4/heimdal/lib/gssapi/mech/gss_krb5.c int32_t o = offset;
offset 897 source4/heimdal/lib/gssapi/mech/gss_krb5.c gsskrb5_get_time_offset(int *offset)
offset 916 source4/heimdal/lib/gssapi/mech/gss_krb5.c *offset = o;
offset 182 source4/heimdal/lib/hcrypto/md4.c size_t offset;
offset 187 source4/heimdal/lib/hcrypto/md4.c offset = (old_sz / 8) % 64;
offset 189 source4/heimdal/lib/hcrypto/md4.c size_t l = min(len, 64 - offset);
offset 190 source4/heimdal/lib/hcrypto/md4.c memcpy(m->save + offset, p, l);
offset 191 source4/heimdal/lib/hcrypto/md4.c offset += l;
offset 194 source4/heimdal/lib/hcrypto/md4.c if(offset == 64) {
offset 207 source4/heimdal/lib/hcrypto/md4.c offset = 0;
offset 216 source4/heimdal/lib/hcrypto/md4.c unsigned offset = (m->sz[0] / 8) % 64;
offset 217 source4/heimdal/lib/hcrypto/md4.c unsigned int dstart = (120 - offset - 1) % 64 + 1;
offset 206 source4/heimdal/lib/hcrypto/md5.c size_t offset;
offset 211 source4/heimdal/lib/hcrypto/md5.c offset = (old_sz / 8) % 64;
offset 213 source4/heimdal/lib/hcrypto/md5.c size_t l = min(len, 64 - offset);
offset 214 source4/heimdal/lib/hcrypto/md5.c memcpy(m->save + offset, p, l);
offset 215 source4/heimdal/lib/hcrypto/md5.c offset += l;
offset 218 source4/heimdal/lib/hcrypto/md5.c if(offset == 64){
offset 231 source4/heimdal/lib/hcrypto/md5.c offset = 0;
offset 240 source4/heimdal/lib/hcrypto/md5.c unsigned offset = (m->sz[0] / 8) % 64;
offset 241 source4/heimdal/lib/hcrypto/md5.c unsigned int dstart = (120 - offset - 1) % 64 + 1;
offset 232 source4/heimdal/lib/hcrypto/sha.c size_t offset;
offset 237 source4/heimdal/lib/hcrypto/sha.c offset = (old_sz / 8) % 64;
offset 239 source4/heimdal/lib/hcrypto/sha.c size_t l = min(len, 64 - offset);
offset 240 source4/heimdal/lib/hcrypto/sha.c memcpy(m->save + offset, p, l);
offset 241 source4/heimdal/lib/hcrypto/sha.c offset += l;
offset 244 source4/heimdal/lib/hcrypto/sha.c if(offset == 64){
offset 257 source4/heimdal/lib/hcrypto/sha.c offset = 0;
offset 266 source4/heimdal/lib/hcrypto/sha.c unsigned offset = (m->sz[0] / 8) % 64;
offset 267 source4/heimdal/lib/hcrypto/sha.c unsigned int dstart = (120 - offset - 1) % 64 + 1;
offset 174 source4/heimdal/lib/hcrypto/sha256.c size_t offset;
offset 179 source4/heimdal/lib/hcrypto/sha256.c offset = (old_sz / 8) % 64;
offset 181 source4/heimdal/lib/hcrypto/sha256.c size_t l = min(len, 64 - offset);
offset 182 source4/heimdal/lib/hcrypto/sha256.c memcpy(m->save + offset, p, l);
offset 183 source4/heimdal/lib/hcrypto/sha256.c offset += l;
offset 186 source4/heimdal/lib/hcrypto/sha256.c if(offset == 64){
offset 199 source4/heimdal/lib/hcrypto/sha256.c offset = 0;
offset 208 source4/heimdal/lib/hcrypto/sha256.c unsigned offset = (m->sz[0] / 8) % 64;
offset 209 source4/heimdal/lib/hcrypto/sha256.c unsigned int dstart = (120 - offset - 1) % 64 + 1;
offset 1234 source4/heimdal/lib/hx509/sel-lex.c int offset = (yy_c_buf_p) - (yytext_ptr);
offset 1270 source4/heimdal/lib/hx509/sel-lex.c (yy_c_buf_p) = (yytext_ptr) + offset;
offset 1888 source4/heimdal/lib/hx509/sel-lex.c n = _hx509_expr_input.length - _hx509_expr_input.offset;
offset 1894 source4/heimdal/lib/hx509/sel-lex.c memcpy(buf, _hx509_expr_input.buf + _hx509_expr_input.offset, n);
offset 1895 source4/heimdal/lib/hx509/sel-lex.c _hx509_expr_input.offset += n;
offset 211 source4/heimdal/lib/hx509/sel.c _hx509_expr_input.offset = 0;
offset 63 source4/heimdal/lib/hx509/sel.h size_t offset;
offset 4312 source4/heimdal/lib/krb5/crypto.c size_t keylen, offset;
offset 4332 source4/heimdal/lib/krb5/crypto.c offset = 0;
offset 4345 source4/heimdal/lib/krb5/crypto.c memcpy((unsigned char *)keydata + offset,
offset 4347 source4/heimdal/lib/krb5/crypto.c min(keylen - offset, sizeof(shaoutput)));
offset 4349 source4/heimdal/lib/krb5/crypto.c offset += sizeof(shaoutput);
offset 4351 source4/heimdal/lib/krb5/crypto.c } while(offset < keylen);
offset 4463 source4/heimdal/lib/krb5/crypto.c size_t keylen, offset;
offset 4505 source4/heimdal/lib/krb5/crypto.c offset = 0;
offset 4518 source4/heimdal/lib/krb5/crypto.c memcpy((unsigned char *)keydata + offset,
offset 4520 source4/heimdal/lib/krb5/crypto.c min(keylen - offset, sizeof(shaoutput)));
offset 4522 source4/heimdal/lib/krb5/crypto.c offset += sizeof(shaoutput);
offset 4524 source4/heimdal/lib/krb5/crypto.c } while(offset < keylen);
offset 267 source4/heimdal/lib/krb5/pac.c size_t len, offset, header_end, old_end;
offset 283 source4/heimdal/lib/krb5/pac.c offset = p->data.length + PAC_INFO_BUFFER_SIZE;
offset 287 source4/heimdal/lib/krb5/pac.c p->pac->buffers[len].offset_lo = offset;
offset 319 source4/heimdal/lib/krb5/pac.c memcpy((unsigned char *)p->data.data + offset,
offset 321 source4/heimdal/lib/krb5/pac.c memset((unsigned char *)p->data.data + offset + data->length,
offset 322 source4/heimdal/lib/krb5/pac.c 0, p->data.length - offset - data->length);
offset 352 source4/heimdal/lib/krb5/pac.c const size_t offset = p->pac->buffers[i].offset_lo;
offset 357 source4/heimdal/lib/krb5/pac.c ret = krb5_data_copy(data, (unsigned char *)p->data.data + offset, len);
offset 77 source4/heimdal/lib/krb5/store.c krb5_storage_seek(krb5_storage *sp, off_t offset, int whence)
offset 79 source4/heimdal/lib/krb5/store.c return (*sp->seek)(sp, offset, whence);
offset 81 source4/heimdal/lib/krb5/store_emem.c emem_seek(krb5_storage *sp, off_t offset, int whence)
offset 86 source4/heimdal/lib/krb5/store_emem.c if(offset > s->size)
offset 87 source4/heimdal/lib/krb5/store_emem.c offset = s->size;
offset 88 source4/heimdal/lib/krb5/store_emem.c if(offset < 0)
offset 89 source4/heimdal/lib/krb5/store_emem.c offset = 0;
offset 90 source4/heimdal/lib/krb5/store_emem.c s->ptr = s->base + offset;
offset 91 source4/heimdal/lib/krb5/store_emem.c if(offset > s->len)
offset 92 source4/heimdal/lib/krb5/store_emem.c s->len = offset;
offset 95 source4/heimdal/lib/krb5/store_emem.c sp->seek(sp,s->ptr - s->base + offset, SEEK_SET);
offset 98 source4/heimdal/lib/krb5/store_emem.c sp->seek(sp, s->len + offset, SEEK_SET);
offset 58 source4/heimdal/lib/krb5/store_fd.c fd_seek(krb5_storage * sp, off_t offset, int whence)
offset 60 source4/heimdal/lib/krb5/store_fd.c return lseek(FD(sp), offset, whence);
offset 74 source4/heimdal/lib/krb5/store_mem.c mem_seek(krb5_storage *sp, off_t offset, int whence)
offset 79 source4/heimdal/lib/krb5/store_mem.c if(offset > s->size)
offset 80 source4/heimdal/lib/krb5/store_mem.c offset = s->size;
offset 81 source4/heimdal/lib/krb5/store_mem.c if(offset < 0)
offset 82 source4/heimdal/lib/krb5/store_mem.c offset = 0;
offset 83 source4/heimdal/lib/krb5/store_mem.c s->ptr = s->base + offset;
offset 86 source4/heimdal/lib/krb5/store_mem.c return sp->seek(sp, s->ptr - s->base + offset, SEEK_SET);
offset 88 source4/heimdal/lib/krb5/store_mem.c return sp->seek(sp, s->size + offset, SEEK_SET);
offset 100 source4/heimdal/lib/ntlm/ntlm.c uint32_t offset;
offset 172 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_ret_uint32(sp, &buf->offset), 0);
offset 183 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_store_uint32(sp, buf->offset), 0);
offset 208 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_storage_seek(sp, desc->offset, SEEK_SET), desc->offset);
offset 265 source4/heimdal/lib/ntlm/ntlm.c CHECK(krb5_storage_seek(sp, desc->offset, SEEK_SET), desc->offset);
offset 432 source4/heimdal/lib/ntlm/ntlm.c if (domain.offset > 32) {
offset 486 source4/heimdal/lib/ntlm/ntlm.c domain.offset = base;
offset 491 source4/heimdal/lib/ntlm/ntlm.c hostname.offset = domain.allocated + domain.offset;
offset 629 source4/heimdal/lib/ntlm/ntlm.c targetname.offset = base;
offset 633 source4/heimdal/lib/ntlm/ntlm.c targetinfo.offset = targetname.allocated + targetname.offset;
offset 732 source4/heimdal/lib/ntlm/ntlm.c if (lm.offset >= 60) {
offset 735 source4/heimdal/lib/ntlm/ntlm.c if (lm.offset >= 64) {
offset 738 source4/heimdal/lib/ntlm/ntlm.c if (lm.offset >= 72) {
offset 747 source4/heimdal/lib/ntlm/ntlm.c if (sessionkey.offset)
offset 799 source4/heimdal/lib/ntlm/ntlm.c lm.offset = base;
offset 803 source4/heimdal/lib/ntlm/ntlm.c ntlm.offset = lm.offset + lm.allocated;
offset 807 source4/heimdal/lib/ntlm/ntlm.c target.offset = ntlm.offset + ntlm.allocated;
offset 811 source4/heimdal/lib/ntlm/ntlm.c username.offset = target.offset + target.allocated;
offset 815 source4/heimdal/lib/ntlm/ntlm.c ws.offset = username.offset + username.allocated;
offset 819 source4/heimdal/lib/ntlm/ntlm.c sessionkey.offset = ws.offset + ws.allocated;
offset 143 source4/heimdal/lib/roken/roken_gethostby.c int offset = 0;
offset 170 source4/heimdal/lib/roken/roken_gethostby.c n = read(s, buf + offset, sizeof(buf) - offset);
offset 173 source4/heimdal/lib/roken/roken_gethostby.c offset += n;
offset 175 source4/heimdal/lib/roken/roken_gethostby.c buf[offset] = '\0';
offset 213 source4/lib/ldb/common/ldb_controls.c control->match.byOffset.offset = os;
offset 634 source4/lib/ldb/include/ldb.h int offset;
offset 60 source4/lib/registry/regf.c uint32_t offset;
offset 65 source4/lib/registry/regf.c uint32_t offset, uint32_t *rel_offset)
offset 70 source4/lib/registry/regf.c if (offset >= data->hbins[i]->offset_from_first &&
offset 71 source4/lib/registry/regf.c offset < data->hbins[i]->offset_from_first+
offset 74 source4/lib/registry/regf.c *rel_offset = offset - data->hbins[i]->offset_from_first - 0x20;
offset 102 source4/lib/registry/regf.c static DATA_BLOB hbin_get(const struct regf_data *data, uint32_t offset)
offset 111 source4/lib/registry/regf.c hbin = hbin_by_offset(data, offset, &rel_offset);
offset 114 source4/lib/registry/regf.c DEBUG(1, ("Can't find HBIN containing 0x%04x\n", offset));
offset 120 source4/lib/registry/regf.c DEBUG(0, ("Trying to use dirty block at 0x%04x\n", offset));
offset 129 source4/lib/registry/regf.c (offset - hbin->offset_from_first - 0x20) + 4;
offset 134 source4/lib/registry/regf.c static bool hbin_get_tdr(struct regf_data *regf, uint32_t offset,
offset 139 source4/lib/registry/regf.c pull->data = hbin_get(regf, offset);
offset 141 source4/lib/registry/regf.c DEBUG(1, ("Unable to get data at 0x%04x\n", offset));
offset 148 source4/lib/registry/regf.c offset));
offset 159 source4/lib/registry/regf.c uint32_t *offset)
offset 166 source4/lib/registry/regf.c *offset = 0;
offset 246 source4/lib/registry/regf.c if (offset) {
offset 248 source4/lib/registry/regf.c *offset = hbin->offset_from_first + rel_offset + 0x20;
offset 249 source4/lib/registry/regf.c SMB_ASSERT(hbin_by_offset(data, *offset, &new_rel_offset) == hbin);
offset 287 source4/lib/registry/regf.c static void hbin_free (struct regf_data *data, uint32_t offset)
offset 294 source4/lib/registry/regf.c SMB_ASSERT (offset > 0);
offset 296 source4/lib/registry/regf.c hbin = hbin_by_offset(data, offset, &rel_offset);
offset 306 source4/lib/registry/regf.c offset));
offset 470 source4/lib/registry/regf.c uint32_t offset)
offset 478 source4/lib/registry/regf.c ret->offset = offset;
offset 485 source4/lib/registry/regf.c if (!hbin_get_tdr(regf, offset, nk,
offset 487 source4/lib/registry/regf.c DEBUG(0, ("Unable to find HBIN data for offset %d\n", offset));
offset 688 source4/lib/registry/regf.c list_data = hbin_get(private_data->hive, ri.offset[i]);
offset 788 source4/lib/registry/regf.c uint32_t offset,
offset 797 source4/lib/registry/regf.c subkey_data = hbin_get(private_data->hive, offset);
offset 820 source4/lib/registry/regf.c *ret = offset;
offset 966 source4/lib/registry/regf.c list_data = hbin_get(private_data->hive, ri.offset[i]);
offset 1120 source4/lib/registry/regf.c private_data->offset,
offset 1178 source4/lib/registry/regf.c private_data->offset, private_data->nk);
offset 1592 source4/lib/registry/regf.c private_data->offset, nk);
offset 1675 source4/lib/registry/regf.c key->offset, &parent_nk->subkeys_offset);
offset 1685 source4/lib/registry/regf.c private_data->offset, parent_nk);
offset 1690 source4/lib/registry/regf.c hbin_free(private_data->hive, key->offset);
offset 1705 source4/lib/registry/regf.c uint32_t offset;
offset 1712 source4/lib/registry/regf.c nk.parent_offset = private_data->offset;
offset 1730 source4/lib/registry/regf.c DEBUG(0, ("Unable to find HBIN data for offset %d\n", offset));
offset 1737 source4/lib/registry/regf.c offset = hbin_store_tdr(regf, (tdr_push_fn_t) tdr_push_nk_block, &nk);
offset 1739 source4/lib/registry/regf.c error = regf_sl_add_entry(regf, parent_nk->subkeys_offset, name, offset,
offset 1742 source4/lib/registry/regf.c hbin_free(regf, offset);
offset 1752 source4/lib/registry/regf.c *ret = (struct hive_key *)regf_get_key(ctx, regf, offset);
offset 1864 source4/lib/registry/regf.c private_data->offset, nk);
offset 2102 source4/lib/registry/regf.c pull->offset = 0x1000;
offset 2111 source4/lib/registry/regf.c while (pull->offset < pull->data.length &&
offset 2112 source4/lib/registry/regf.c pull->offset <= regf->header->last_block) {
offset 33 source4/lib/tdr/tdr.c if ((n) > tdr->data.length || tdr->offset + (n) > tdr->data.length) { \
offset 68 source4/lib/tdr/tdr.c *v = TDR_CVAL(tdr, tdr->offset);
offset 69 source4/lib/tdr/tdr.c tdr->offset += 1;
offset 90 source4/lib/tdr/tdr.c *v = TDR_SVAL(tdr, tdr->offset);
offset 91 source4/lib/tdr/tdr.c tdr->offset += 2;
offset 112 source4/lib/tdr/tdr.c *v = TDR_IVAL(tdr, tdr->offset);
offset 113 source4/lib/tdr/tdr.c tdr->offset += 4;
offset 138 source4/lib/tdr/tdr.c length = ascii_len_n((const char*)tdr->data.data+tdr->offset, tdr->data.length-tdr->offset);
offset 141 source4/lib/tdr/tdr.c length = utf16_len_n(tdr->data.data+tdr->offset, tdr->data.length-tdr->offset);
offset 156 source4/lib/tdr/tdr.c if (!convert_string_talloc_convenience(ctx, tdr->iconv_convenience, chset, CH_UNIX, tdr->data.data+tdr->offset, el_size*length, discard_const_p(void *, v), &ret, false)) {
offset 160 source4/lib/tdr/tdr.c tdr->offset += length * el_size;
offset 202 source4/lib/tdr/tdr.c *v = TDR_IVAL(tdr, tdr->offset);
offset 203 source4/lib/tdr/tdr.c *v |= (uint64_t)(TDR_IVAL(tdr, tdr->offset+4)) << 32;
offset 204 source4/lib/tdr/tdr.c tdr->offset += 8;
offset 314 source4/lib/tdr/tdr.c length = TDR_ALIGN(tdr->offset, 2);
offset 316 source4/lib/tdr/tdr.c length = TDR_ALIGN(tdr->offset, 4);
offset 318 source4/lib/tdr/tdr.c length = TDR_ALIGN(tdr->offset, 8);
offset 320 source4/lib/tdr/tdr.c length = tdr->data.length - tdr->offset;
offset 325 source4/lib/tdr/tdr.c if (tdr->data.length - tdr->offset < length) {
offset 326 source4/lib/tdr/tdr.c length = tdr->data.length - tdr->offset;
offset 331 source4/lib/tdr/tdr.c *blob = data_blob_talloc(tdr, tdr->data.data+tdr->offset, length);
offset 332 source4/lib/tdr/tdr.c tdr->offset += length;
offset 34 source4/lib/tdr/tdr.h uint32_t offset;
offset 44 source4/lib/tdr/testsuite.c tdr->offset = 0;
offset 48 source4/lib/tdr/testsuite.c torture_assert_int_equal(tctx, 1, tdr->offset,
offset 72 source4/lib/tdr/testsuite.c tdr->offset = 0;
offset 76 source4/lib/tdr/testsuite.c torture_assert_int_equal(tctx, 2, tdr->offset, "offset invalid");
offset 102 source4/lib/tdr/testsuite.c tdr->offset = 0;
offset 106 source4/lib/tdr/testsuite.c torture_assert_int_equal(tctx, 4, tdr->offset, "offset invalid");
offset 117 source4/lib/tdr/testsuite.c tdr->offset = 0;
offset 121 source4/lib/tdr/testsuite.c torture_assert_int_equal(tctx, 4, tdr->offset, "offset invalid");
offset 124 source4/lib/tdr/testsuite.c tdr->offset = 0;
offset 127 source4/lib/tdr/testsuite.c torture_assert_int_equal(tctx, 2, tdr->offset, "offset invalid");
offset 139 source4/lib/tdr/testsuite.c tdr->offset = 0;
offset 143 source4/lib/tdr/testsuite.c torture_assert_int_equal(tctx, 0, tdr->offset, "offset invalid");
offset 62 source4/lib/wmi/wbemdata.c ofs = ndr->offset;
offset 63 source4/lib/wmi/wbemdata.c ndr->offset = 4;
offset 65 source4/lib/wmi/wbemdata.c ndr->offset = ofs;
offset 69 source4/lib/wmi/wbemdata.c o->u_objref.u_custom.pData = talloc_realloc(mp, ndr->data, uint8_t, ndr->offset);
offset 70 source4/lib/wmi/wbemdata.c o->u_objref.u_custom.size = ndr->offset;
offset 256 source4/lib/wmi/wbemdata.c DEBUG(0, ("%s(%d): WBEMDATA_ERR(0x%08X): Error parsing(%s)\n", __FILE__, __LINE__, ndr->offset, #expr)); \
offset 315 source4/lib/wmi/wbemdata.c ofs_next = ndr->offset + u;
offset 341 source4/lib/wmi/wbemdata.c ndr->offset = ofs_next;
offset 353 source4/libcli/clifile.c uint32_t offset, uint32_t len, int timeout,
offset 367 source4/libcli/clifile.c lock[0].offset = offset;
offset 381 source4/libcli/clifile.c uint32_t offset, uint32_t len, int timeout,
offset 395 source4/libcli/clifile.c lock[0].offset = offset;
offset 408 source4/libcli/clifile.c NTSTATUS smbcli_unlock(struct smbcli_tree *tree, int fnum, uint32_t offset, uint32_t len)
offset 421 source4/libcli/clifile.c lock[0].offset = offset;
offset 434 source4/libcli/clifile.c off_t offset, off_t len, int timeout,
offset 443 source4/libcli/clifile.c return smbcli_lock(tree, fnum, offset, len, timeout, lock_type);
offset 456 source4/libcli/clifile.c lock[0].offset = offset;
offset 469 source4/libcli/clifile.c NTSTATUS smbcli_unlock64(struct smbcli_tree *tree, int fnum, off_t offset,
offset 477 source4/libcli/clifile.c return smbcli_unlock(tree, fnum, offset, len);
offset 487 source4/libcli/clifile.c lock[0].offset = offset;
offset 29 source4/libcli/clireadwrite.c ssize_t smbcli_read(struct smbcli_tree *tree, int fnum, void *_buf, off_t offset,
offset 56 source4/libcli/clireadwrite.c parms.readx.in.offset = offset;
offset 70 source4/libcli/clireadwrite.c offset += parms.readx.out.nread;
offset 90 source4/libcli/clireadwrite.c const void *_buf, off_t offset, size_t size)
offset 114 source4/libcli/clireadwrite.c parms.writex.in.offset = offset;
offset 124 source4/libcli/clireadwrite.c offset += parms.writex.out.nwritten;
offset 136 source4/libcli/clireadwrite.c int fnum, const void *_buf, off_t offset, size_t size1)
offset 150 source4/libcli/clireadwrite.c parms.write.in.offset = offset;
offset 163 source4/libcli/clireadwrite.c offset += size;
offset 183 source4/libcli/dgram/mailslot.c msg->offset = 0;
offset 517 source4/libcli/ldap/ldap_controls.c if (!asn1_read_Integer(data, &(lvrc->match.byOffset.offset))) {
offset 1005 source4/libcli/ldap/ldap_controls.c if (!asn1_write_Integer(data, lvrc->match.byOffset.offset)) {
offset 116 source4/libcli/raw/interfaces.h int32_t offset; /* signed */
offset 119 source4/libcli/raw/interfaces.h int32_t offset;
offset 1572 source4/libcli/raw/interfaces.h uint64_t offset;
offset 1699 source4/libcli/raw/interfaces.h uint64_t offset;
offset 1718 source4/libcli/raw/interfaces.h uint64_t offset;
offset 1736 source4/libcli/raw/interfaces.h uint32_t offset;
offset 1751 source4/libcli/raw/interfaces.h uint32_t offset;
offset 1771 source4/libcli/raw/interfaces.h uint64_t offset;
offset 1816 source4/libcli/raw/interfaces.h uint64_t offset;
offset 1834 source4/libcli/raw/interfaces.h uint32_t offset;
offset 1849 source4/libcli/raw/interfaces.h uint32_t offset;
offset 1864 source4/libcli/raw/interfaces.h uint32_t offset;
offset 1893 source4/libcli/raw/interfaces.h uint64_t offset;
offset 1936 source4/libcli/raw/interfaces.h uint64_t offset;
offset 1948 source4/libcli/raw/interfaces.h uint32_t offset;
offset 1964 source4/libcli/raw/interfaces.h uint64_t offset;
offset 31 source4/libcli/raw/rawdate.c uint8_t *buf, int offset, time_t unixdate)
offset 33 source4/libcli/raw/rawdate.c push_dos_date(buf, offset, unixdate, transport->negotiate.server_zone);
offset 41 source4/libcli/raw/rawdate.c uint8_t *buf, int offset, time_t unixdate)
offset 43 source4/libcli/raw/rawdate.c push_dos_date2(buf, offset, unixdate, transport->negotiate.server_zone);
offset 51 source4/libcli/raw/rawdate.c uint8_t *buf, int offset, time_t unixdate)
offset 53 source4/libcli/raw/rawdate.c push_dos_date3(buf, offset, unixdate, transport->negotiate.server_zone);
offset 611 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(3), parms->openxreadx.in.offset);
offset 617 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(10),parms->openxreadx.in.offset>>32);
offset 835 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(3), parms->lock.in.offset);
offset 842 source4/libcli/raw/rawfile.c SIVAL(req->out.vwv, VWV(3), parms->unlock.in.offset);
offset 867 source4/libcli/raw/rawfile.c SIVAL(p, 4, lockp[i].offset>>32);
offset 868 source4/libcli/raw/rawfile.c SIVAL(p, 8, lockp[i].offset);
offset 872 source4/libcli/raw/rawfile.c SIVAL(p, 2, lockp[i].offset);
offset 982 source4/libcli/raw/rawfile.c SIVALS(req->out.vwv, VWV(2), parms->lseek.in.offset);
offset 1003 source4/libcli/raw/rawfile.c parms->lseek.out.offset = IVAL(req->in.vwv, VWV(0));
offset 45 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(1), parms->readbraw.in.offset);
offset 51 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(8),parms->readbraw.in.offset>>32);
offset 59 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->lockread.in.offset);
offset 67 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->read.in.offset);
offset 79 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(3), parms->readx.in.offset);
offset 89 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(10),parms->readx.in.offset>>32);
offset 221 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->writeunlock.in.offset);
offset 235 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->write.in.offset);
offset 248 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(2), parms->writeclose.in.offset);
offset 266 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv, VWV(3), parms->writex.in.offset);
offset 274 source4/libcli/raw/rawreadwrite.c SIVAL(req->out.vwv,VWV(12),parms->writex.in.offset>>32);
offset 725 source4/libcli/raw/rawrequest.c void smbcli_push_nttime(void *base, uint16_t offset, NTTIME t)
offset 727 source4/libcli/raw/rawrequest.c SBVAL(base, offset, t);
offset 733 source4/libcli/raw/rawrequest.c NTTIME smbcli_pull_nttime(void *base, uint16_t offset)
offset 735 source4/libcli/raw/rawrequest.c NTTIME ret = BVAL(base, offset);
offset 994 source4/libcli/raw/rawrequest.c enum ndr_err_code smbcli_pull_guid(void *base, uint16_t offset,
offset 1003 source4/libcli/raw/rawrequest.c blob.data = offset + (uint8_t *)base;
offset 1014 source4/libcli/raw/rawrequest.c enum ndr_err_code smbcli_push_guid(void *base, uint16_t offset,
offset 1026 source4/libcli/raw/rawrequest.c memcpy(offset + (uint8_t *)base, blob.data, blob.length);
offset 32 source4/libcli/raw/rawtrans.c uint_t offset, uint_t count)
offset 40 source4/libcli/raw/rawtrans.c ptr = req->in.hdr + offset;
offset 46 source4/libcli/smb2/lock.c SBVAL(req->out.body, 0x18 + i*24, io->in.locks[i].offset);
offset 39 source4/libcli/smb2/read.c SBVAL(req->out.body, 0x08, io->in.offset);
offset 231 source4/libcli/smb2/request.c size_t smb2_padding_size(uint32_t offset, size_t n)
offset 233 source4/libcli/smb2/request.c if ((offset & (n-1)) == 0) return 0;
offset 234 source4/libcli/smb2/request.c return n - (offset & (n-1));
offset 306 source4/libcli/smb2/request.c size_t offset;
offset 334 source4/libcli/smb2/request.c offset = buf->dynamic - buf->hdr;
offset 335 source4/libcli/smb2/request.c padding_length = smb2_padding_size(offset, 2);
offset 336 source4/libcli/smb2/request.c offset += padding_length;
offset 339 source4/libcli/smb2/request.c SSVAL(ptr, 0, offset);
offset 367 source4/libcli/smb2/request.c size_t offset;
offset 390 source4/libcli/smb2/request.c offset = buf->dynamic - buf->hdr;
offset 391 source4/libcli/smb2/request.c padding_length = smb2_padding_size(offset, 2);
offset 392 source4/libcli/smb2/request.c offset += padding_length;
offset 395 source4/libcli/smb2/request.c SSVAL(ptr, 0, offset);
offset 423 source4/libcli/smb2/request.c size_t offset;
offset 446 source4/libcli/smb2/request.c offset = buf->dynamic - buf->hdr;
offset 447 source4/libcli/smb2/request.c padding_length = smb2_padding_size(offset, 8);
offset 448 source4/libcli/smb2/request.c offset += padding_length;
offset 451 source4/libcli/smb2/request.c SIVAL(ptr, 0, offset);
offset 479 source4/libcli/smb2/request.c size_t offset;
offset 502 source4/libcli/smb2/request.c offset = buf->dynamic - buf->hdr;
offset 503 source4/libcli/smb2/request.c padding_length = smb2_padding_size(offset, 8);
offset 504 source4/libcli/smb2/request.c offset += padding_length;
offset 508 source4/libcli/smb2/request.c SIVAL(ptr, 4, offset);
offset 43 source4/libcli/smb2/write.c SBVAL(req->out.body, 0x08, io->in.offset);
offset 104 source4/libcli/smb_composite/loadfile.c state->io_read->readx.in.offset = 0;
offset 140 source4/libcli/smb_composite/loadfile.c if (state->io_read->readx.in.offset +
offset 146 source4/libcli/smb_composite/loadfile.c state->io_read->readx.in.offset += state->io_read->readx.out.nread;
offset 147 source4/libcli/smb_composite/loadfile.c state->io_read->readx.in.mincnt = MIN(32768, io->out.size - state->io_read->readx.in.offset);
offset 148 source4/libcli/smb_composite/loadfile.c state->io_read->readx.out.data = io->out.data + state->io_read->readx.in.offset;
offset 98 source4/libcli/smb_composite/savefile.c io_write->writex.in.offset = 0;
offset 142 source4/libcli/smb_composite/savefile.c state->io_write->writex.in.offset = state->total_written;
offset 86 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 123 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 161 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 195 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 227 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 240 source4/librpc/ndr/ndr_string.c len1 = ascii_len_n((const char *)(ndr->data+ndr->offset), ndr->data_size - ndr->offset);
offset 242 source4/librpc/ndr/ndr_string.c len1 = utf16_len_n(ndr->data+ndr->offset, ndr->data_size - ndr->offset);
offset 246 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 262 source4/librpc/ndr/ndr_string.c len1 = ndr->data_size - ndr->offset;
offset 271 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 495 source4/librpc/ndr/ndr_string.c for (count = 0; ((ndr->data_size - ndr->offset) > 0); count++) {
offset 632 source4/librpc/ndr/ndr_string.c save_offset = ndr->offset;
offset 637 source4/librpc/ndr/ndr_string.c if (ndr->data[ndr->offset+i] != 0) {
offset 638 source4/librpc/ndr/ndr_string.c ndr->offset = save_offset;
offset 644 source4/librpc/ndr/ndr_string.c ndr->offset = save_offset;
offset 666 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset,
offset 690 source4/librpc/ndr/ndr_string.c ndr->data+ndr->offset, required, &ret, false)) {
offset 697 source4/librpc/ndr/ndr_string.c memset(ndr->data+ndr->offset+ret, 0, required-ret);
offset 700 source4/librpc/ndr/ndr_string.c ndr->offset += required;
offset 1478 source4/librpc/rpc/dcerpc.c if (pull->offset != pull->data_size) {
offset 1480 source4/librpc/rpc/dcerpc.c pull->data_size - pull->offset));
offset 178 source4/librpc/rpc/dcerpc_smb.c io->readx.in.offset = 0;
offset 338 source4/librpc/rpc/dcerpc_smb.c io.writex.in.offset = 0;
offset 514 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c rd->readx.in.offset);
offset 550 source4/ntvfs/cifs_posix_cli/vfs_cifs_posix.c wr->writex.in.offset);
offset 60 source4/ntvfs/ipc/ipc_rap.c int offset;
offset 66 source4/ntvfs/ipc/ipc_rap.c int offset, num_strings;
offset 72 source4/ntvfs/ipc/ipc_rap.c save->offset = heap->offset;
offset 79 source4/ntvfs/ipc/ipc_rap.c heap->offset = save->offset;
offset 208 source4/ntvfs/ipc/ipc_rap.c call->heap->offset = *bufsize;
offset 232 source4/ntvfs/ipc/ipc_rap.c if (heap->offset < space)
offset 235 source4/ntvfs/ipc/ipc_rap.c heap->offset -= space;
offset 237 source4/ntvfs/ipc/ipc_rap.c NDR_RETURN(ndr_push_uint16(data_push, NDR_SCALARS, heap->offset));
offset 288 source4/ntvfs/ipc/ipc_rap.c offset_save = call->ndr_push_data->offset;
offset 313 source4/ntvfs/ipc/ipc_rap.c if (call->ndr_push_data->offset > call->heap->offset) {
offset 317 source4/ntvfs/ipc/ipc_rap.c call->ndr_push_data->offset = offset_save;
offset 370 source4/ntvfs/ipc/ipc_rap.c offset_save = call->ndr_push_data->offset;
offset 397 source4/ntvfs/ipc/ipc_rap.c if (call->ndr_push_data->offset > call->heap->offset) {
offset 401 source4/ntvfs/ipc/ipc_rap.c call->ndr_push_data->offset = offset_save;
offset 494 source4/ntvfs/ipc/ipc_rap.c NDR_SCALARS, call->heap->offset - result_data.length));
offset 454 source4/ntvfs/nbench/vfs_nbench.c (int)rd->readx.in.offset,
offset 492 source4/ntvfs/nbench/vfs_nbench.c (int)wr->writex.in.offset,
offset 504 source4/ntvfs/nbench/vfs_nbench.c wr->write.in.offset,
offset 714 source4/ntvfs/nbench/vfs_nbench.c (int)lck->lockx.in.locks[0].offset,
offset 721 source4/ntvfs/nbench/vfs_nbench.c (int)lck->lockx.in.locks[0].offset,
offset 1022 source4/ntvfs/ntvfs_generic.c locks->offset = lck->lock.in.offset;
offset 1035 source4/ntvfs/ntvfs_generic.c locks->offset = lck->unlock.in.offset;
offset 1079 source4/ntvfs/ntvfs_generic.c lck2->generic.in.locks[i].offset = lck->smb2.in.locks[i].offset;
offset 1153 source4/ntvfs/ntvfs_generic.c lck->unlock.in.offset = wr->writeunlock.in.offset;
offset 1232 source4/ntvfs/ntvfs_generic.c wr2->writex.in.offset = wr->write.in.offset;
offset 1242 source4/ntvfs/ntvfs_generic.c wr2->writex.in.offset = wr->writeunlock.in.offset;
offset 1252 source4/ntvfs/ntvfs_generic.c wr2->writex.in.offset = wr->writeclose.in.offset;
offset 1262 source4/ntvfs/ntvfs_generic.c wr2->writex.in.offset = 0;
offset 1272 source4/ntvfs/ntvfs_generic.c wr2->writex.in.offset = wr->smb2.in.offset;
offset 1348 source4/ntvfs/ntvfs_generic.c rd2->readx.in.offset = rd->read.in.offset;
offset 1358 source4/ntvfs/ntvfs_generic.c rd2->readx.in.offset = rd->readbraw.in.offset;
offset 1379 source4/ntvfs/ntvfs_generic.c lck->lock.in.offset = rd->lockread.in.offset;
offset 1384 source4/ntvfs/ntvfs_generic.c rd2->readx.in.offset = rd->lockread.in.offset;
offset 1397 source4/ntvfs/ntvfs_generic.c rd2->readx.in.offset = rd->smb2.in.offset;
offset 59 source4/ntvfs/posix/pvfs_aio.c f->handle->position = f->handle->seek_offset = rd->readx.in.offset + ret;
offset 85 source4/ntvfs/posix/pvfs_aio.c maxcnt, rd->readx.in.offset);
offset 124 source4/ntvfs/posix/pvfs_aio.c f->handle->seek_offset = wr->writex.in.offset + ret;
offset 149 source4/ntvfs/posix/pvfs_aio.c wr->writex.in.count, wr->writex.in.offset);
offset 31 source4/ntvfs/posix/pvfs_dirlist.c off_t offset;
offset 39 source4/ntvfs/posix/pvfs_dirlist.c off_t offset;
offset 85 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = 0;
offset 150 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = DIR_OFFSET_DOT;
offset 177 source4/ntvfs/posix/pvfs_dirlist.c e->offset = dir->offset;
offset 201 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = *ofs;
offset 210 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = *ofs;
offset 219 source4/ntvfs/posix/pvfs_dirlist.c } else if (*ofs != dir->offset) {
offset 222 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = *ofs;
offset 241 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = telldir(dir->dir) + DIR_OFFSET_BASE;
offset 242 source4/ntvfs/posix/pvfs_dirlist.c (*ofs) = dir->offset;
offset 280 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = DIR_OFFSET_DOTDOT;
offset 281 source4/ntvfs/posix/pvfs_dirlist.c *ofs = dir->offset;
offset 286 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = DIR_OFFSET_BASE;
offset 287 source4/ntvfs/posix/pvfs_dirlist.c *ofs = dir->offset;
offset 294 source4/ntvfs/posix/pvfs_dirlist.c *ofs = e->offset;
offset 301 source4/ntvfs/posix/pvfs_dirlist.c *ofs = e->offset;
offset 310 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = telldir(dir->dir) + DIR_OFFSET_BASE;
offset 311 source4/ntvfs/posix/pvfs_dirlist.c *ofs = dir->offset;
offset 348 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = *ofs;
offset 354 source4/ntvfs/posix/pvfs_dirlist.c if (resume_key == (uint32_t)e->offset) {
offset 355 source4/ntvfs/posix/pvfs_dirlist.c *ofs = e->offset;
offset 361 source4/ntvfs/posix/pvfs_dirlist.c if (resume_key == (uint32_t)e->offset) {
offset 362 source4/ntvfs/posix/pvfs_dirlist.c *ofs = e->offset;
offset 370 source4/ntvfs/posix/pvfs_dirlist.c dir->offset = telldir(dir->dir) + DIR_OFFSET_BASE;
offset 371 source4/ntvfs/posix/pvfs_dirlist.c if (resume_key == (uint32_t)dir->offset) {
offset 372 source4/ntvfs/posix/pvfs_dirlist.c *ofs = dir->offset;
offset 35 source4/ntvfs/posix/pvfs_lock.c uint64_t offset, uint64_t count,
offset 45 source4/ntvfs/posix/pvfs_lock.c offset, count, rw);
offset 76 source4/ntvfs/posix/pvfs_lock.c locks[i].offset,
offset 129 source4/ntvfs/posix/pvfs_lock.c locks[pending->pending_lock].offset,
offset 179 source4/ntvfs/posix/pvfs_lock.c locks[i].offset,
offset 257 source4/ntvfs/posix/pvfs_lock.c p->lck->lockx.in.locks[i].offset != lck->lockx.in.locks[i].offset ||
offset 352 source4/ntvfs/posix/pvfs_lock.c locks[i].offset,
offset 371 source4/ntvfs/posix/pvfs_lock.c locks[i].offset,
offset 396 source4/ntvfs/posix/pvfs_lock.c locks[i].offset,
offset 67 source4/ntvfs/posix/pvfs_read.c rd->readx.in.offset,
offset 76 source4/ntvfs/posix/pvfs_read.c rd->readx.out.data, maxcnt, rd->readx.in.offset);
offset 91 source4/ntvfs/posix/pvfs_read.c rd->readx.in.offset);
offset 105 source4/ntvfs/posix/pvfs_read.c f->handle->position = f->handle->seek_offset = rd->readx.in.offset + ret;
offset 48 source4/ntvfs/posix/pvfs_seek.c h->seek_offset = io->lseek.in.offset;
offset 52 source4/ntvfs/posix/pvfs_seek.c h->seek_offset += io->lseek.in.offset;
offset 57 source4/ntvfs/posix/pvfs_seek.c h->seek_offset = h->name->st.st_size + io->lseek.in.offset;
offset 61 source4/ntvfs/posix/pvfs_seek.c io->lseek.out.offset = h->seek_offset;
offset 418 source4/ntvfs/posix/pvfs_streams.c struct pvfs_file_handle *h, void *data, size_t count, off_t offset)
offset 425 source4/ntvfs/posix/pvfs_streams.c status = pvfs_stream_load(pvfs, h, h->name, h->fd, offset+count, &blob);
offset 430 source4/ntvfs/posix/pvfs_streams.c if (offset >= blob.length) {
offset 434 source4/ntvfs/posix/pvfs_streams.c if (count > blob.length - offset) {
offset 435 source4/ntvfs/posix/pvfs_streams.c count = blob.length - offset;
offset 437 source4/ntvfs/posix/pvfs_streams.c memcpy(data, blob.data + offset, count);
offset 447 source4/ntvfs/posix/pvfs_streams.c struct pvfs_file_handle *h, const void *data, size_t count, off_t offset)
offset 455 source4/ntvfs/posix/pvfs_streams.c if (count+offset > XATTR_MAX_STREAM_SIZE) {
offset 456 source4/ntvfs/posix/pvfs_streams.c if (!pvfs->ea_db || count+offset > XATTR_MAX_STREAM_SIZE_TDB) {
offset 463 source4/ntvfs/posix/pvfs_streams.c status = pvfs_stream_load(pvfs, h, h->name, h->fd, offset+count, &blob);
offset 467 source4/ntvfs/posix/pvfs_streams.c if (count+offset > blob.length) {
offset 468 source4/ntvfs/posix/pvfs_streams.c blob.data = talloc_realloc(blob.data, blob.data, uint8_t, count+offset);
offset 473 source4/ntvfs/posix/pvfs_streams.c if (offset > blob.length) {
offset 474 source4/ntvfs/posix/pvfs_streams.c memset(blob.data+blob.length, 0, offset - blob.length);
offset 476 source4/ntvfs/posix/pvfs_streams.c blob.length = count+offset;
offset 478 source4/ntvfs/posix/pvfs_streams.c memcpy(blob.data + offset, data, count);
offset 110 source4/ntvfs/posix/pvfs_write.c wr->writex.in.offset,
offset 125 source4/ntvfs/posix/pvfs_write.c wr->writex.in.offset);
offset 140 source4/ntvfs/posix/pvfs_write.c wr->writex.in.offset);
offset 149 source4/ntvfs/posix/pvfs_write.c f->handle->seek_offset = wr->writex.in.offset + ret;
offset 511 source4/ntvfs/simple/vfs_simple.c rd->readx.in.offset);
offset 547 source4/ntvfs/simple/vfs_simple.c wr->writex.in.offset);
offset 1225 source4/param/loadparm.c return ((char *)lp_ctx->sDefault)+parm->offset;
offset 1227 source4/param/loadparm.c return ((char *)lp_ctx->globals)+parm->offset;
offset 1230 source4/param/loadparm.c return ((char *)service) + parm->offset;
offset 1267 source4/param/loadparm.c if (parm_table[i].offset != -1 && parm_table[i].pclass == P_LOCAL &&
offset 1270 source4/param/loadparm.c ((char *)pserviceSource) + parm_table[i].offset;
offset 1272 source4/param/loadparm.c ((char *)pserviceDest) + parm_table[i].offset;
offset 1687 source4/param/loadparm.c for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
offset 1690 source4/param/loadparm.c for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset;i++) {
offset 1752 source4/param/loadparm.c parm_ptr = ((char *)service) + parm_table[parmnum].offset;
offset 1760 source4/param/loadparm.c if (parm_table[i].offset == parm_table[parmnum].offset &&
offset 1840 source4/param/loadparm.c for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
offset 1843 source4/param/loadparm.c for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset;i++) {
offset 2019 source4/param/loadparm.c void *def_ptr = ((char *)sDefault) + parm_table[i].offset;
offset 2057 source4/param/loadparm.c parm_table[i].offset != -1 &&
offset 2058 source4/param/loadparm.c (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset))) {
offset 2088 source4/param/loadparm.c parm_table[i].offset != -1 &&
offset 2090 source4/param/loadparm.c (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset))) {
offset 2097 source4/param/loadparm.c parm_table[i].offset,
offset 2099 source4/param/loadparm.c parm_table[i].offset))
offset 2105 source4/param/loadparm.c ((char *)pService) + parm_table[i].offset, f);
offset 2145 source4/param/loadparm.c if (parm_table[*i].offset == -1
offset 2150 source4/param/loadparm.c && (parm_table[*i].offset ==
offset 2151 source4/param/loadparm.c parm_table[(*i) - 1].offset))
offset 2161 source4/param/loadparm.c parm_table[*i].offset != -1 &&
offset 2164 source4/param/loadparm.c (parm_table[*i].offset !=
offset 2165 source4/param/loadparm.c parm_table[(*i) - 1].offset)))
offset 2170 source4/param/loadparm.c parm_table[*i].offset,
offset 2172 source4/param/loadparm.c parm_table[*i].offset))
offset 2267 source4/param/loadparm.c parm_table[i].offset != -1 &&
offset 2271 source4/param/loadparm.c r = (char **)(((char *)lp_ctx->sDefault) + parm_table[i].offset);
offset 2273 source4/param/loadparm.c r = (char **)(((char *)lp_ctx->globals) + parm_table[i].offset);
offset 50 source4/param/loadparm.h int offset;
offset 922 source4/rpc_server/dcerpc_server.c if (pull->offset != pull->data_size) {
offset 924 source4/rpc_server/dcerpc_server.c pull->data_size - pull->offset));
offset 925 source4/rpc_server/dcerpc_server.c dump_data(10, pull->data+pull->offset, pull->data_size - pull->offset);
offset 1087 source4/rpc_server/dcerpc_server.c static void dce_partial_advance(struct dcesrv_connection *dce_conn, uint32_t offset)
offset 1091 source4/rpc_server/dcerpc_server.c if (dce_conn->partial_input.length == offset) {
offset 1097 source4/rpc_server/dcerpc_server.c dce_conn->partial_input = data_blob(blob.data + offset,
offset 1098 source4/rpc_server/dcerpc_server.c blob.length - offset);
offset 83 source4/smb_server/blob.c uint16_t offset,
offset 91 source4/smb_server/blob.c if (offset >= blob->length) {
offset 96 source4/smb_server/blob.c blob->data + offset,
offset 97 source4/smb_server/blob.c blob->length - offset,
offset 108 source4/smb_server/blob.c uint32_t offset,
offset 119 source4/smb_server/blob.c if (!str || offset >= blob->length) {
offset 130 source4/smb_server/blob.c if (dest_len == -1 || (dest_len > blob->length - offset)) {
offset 131 source4/smb_server/blob.c dest_len = blob->length - offset;
offset 138 source4/smb_server/blob.c if ((offset&1) && (flags & STR_UNICODE) && !(flags & STR_NOALIGN)) {
offset 141 source4/smb_server/blob.c SCVAL(blob->data + offset, 0, 0);
offset 142 source4/smb_server/blob.c ret = push_string(blob->data + offset + 1, str, dest_len-1, flags);
offset 145 source4/smb_server/blob.c ret = push_string(blob->data + offset, str, dest_len, flags);
offset 183 source4/smb_server/blob.c uint32_t offset;
offset 186 source4/smb_server/blob.c offset = blob->length;
offset 187 source4/smb_server/blob.c BLOB_CHECK(smbsrv_blob_grow_data(mem_ctx, blob, offset + (2+strlen_m(str))*max_bytes_per_char));
offset 188 source4/smb_server/blob.c ret = smbsrv_blob_push_string(mem_ctx, blob, len_offset, offset, str, -1, default_flags, flags);
offset 192 source4/smb_server/blob.c BLOB_CHECK(smbsrv_blob_grow_data(mem_ctx, blob, offset + ret));
offset 604 source4/smb_server/smb/reply.c io.readbraw.in.offset = IVAL(req->in.vwv, VWV(1));
offset 616 source4/smb_server/smb/reply.c io.readbraw.in.offset |= (((off_t)offset_high) << 32);
offset 704 source4/smb_server/smb/reply.c io->lockread.in.offset = IVAL(req->in.vwv, VWV(2));
offset 759 source4/smb_server/smb/reply.c io->read.in.offset = IVAL(req->in.vwv, VWV(2));
offset 822 source4/smb_server/smb/reply.c io->readx.in.offset = IVAL(req->in.vwv, VWV(3));
offset 842 source4/smb_server/smb/reply.c io->readx.in.offset |= (((uint64_t)offset_high) << 32);
offset 902 source4/smb_server/smb/reply.c io->writeunlock.in.offset = IVAL(req->in.vwv, VWV(2));
offset 956 source4/smb_server/smb/reply.c io->write.in.offset = IVAL(req->in.vwv, VWV(2));
offset 1016 source4/smb_server/smb/reply.c io->writex.in.offset = IVAL(req->in.vwv, VWV(3));
offset 1025 source4/smb_server/smb/reply.c io->writex.in.offset |= (((uint64_t)offset_high) << 32);
offset 1053 source4/smb_server/smb/reply.c SIVALS(req->out.vwv, VWV(0), io->lseek.out.offset);
offset 1071 source4/smb_server/smb/reply.c io->lseek.in.offset = IVALS(req->in.vwv, VWV(2));
offset 1161 source4/smb_server/smb/reply.c io->writeclose.in.offset = IVAL(req->in.vwv, VWV(2));
offset 1190 source4/smb_server/smb/reply.c lck->lock.in.offset = IVAL(req->in.vwv, VWV(3));
offset 1212 source4/smb_server/smb/reply.c lck->unlock.in.offset = IVAL(req->in.vwv, VWV(3));
offset 1666 source4/smb_server/smb/reply.c lck->lockx.in.locks[i].offset = IVAL(p, 8);
offset 1670 source4/smb_server/smb/reply.c lck->lockx.in.locks[i].offset = IVAL(p, 2);
offset 1675 source4/smb_server/smb/reply.c lck->lockx.in.locks[i].offset |= ((uint64_t)ofs_high) << 32;
offset 671 source4/smb_server/smb/request.c static uint16_t req_fnum(struct smbsrv_request *req, const uint8_t *base, uint_t offset)
offset 676 source4/smb_server/smb/request.c return SVAL(base, offset);
offset 679 source4/smb_server/smb/request.c struct ntvfs_handle *smbsrv_pull_fnum(struct smbsrv_request *req, const uint8_t *base, uint_t offset)
offset 682 source4/smb_server/smb/request.c uint16_t fnum = req_fnum(req, base, offset);
offset 703 source4/smb_server/smb/request.c void smbsrv_push_fnum(uint8_t *base, uint_t offset, struct ntvfs_handle *ntvfs)
offset 707 source4/smb_server/smb/request.c SSVAL(base, offset, handle->hid);
offset 31 source4/smb_server/smb/srvtime.c uint8_t *buf, int offset, time_t unixdate)
offset 33 source4/smb_server/smb/srvtime.c push_dos_date(buf, offset, unixdate, smb_server->negotiate.zone_offset);
offset 41 source4/smb_server/smb/srvtime.c uint8_t *buf, int offset, time_t unixdate)
offset 43 source4/smb_server/smb/srvtime.c push_dos_date2(buf, offset, unixdate, smb_server->negotiate.zone_offset);
offset 51 source4/smb_server/smb/srvtime.c uint8_t *buf, int offset, time_t unixdate)
offset 53 source4/smb_server/smb/srvtime.c push_dos_date3(buf, offset, unixdate, smb_server->negotiate.zone_offset);
offset 268 source4/smb_server/smb2/fileio.c io->smb2.in.offset = BVAL(req->in.body, 0x08);
offset 313 source4/smb_server/smb2/fileio.c io->smb2.in.offset = BVAL(req->in.body, 0x08);
offset 361 source4/smb_server/smb2/fileio.c io->smb2.in.locks[i].offset = BVAL(req->in.body, 24 + i*24);
offset 90 source4/smb_server/smb2/tcon.c struct ntvfs_handle *smb2srv_pull_handle(struct smb2srv_request *req, const uint8_t *base, uint_t offset)
offset 106 source4/smb_server/smb2/tcon.c offset = 0;
offset 109 source4/smb_server/smb2/tcon.c hid = IVAL(base, offset);
offset 110 source4/smb_server/smb2/tcon.c tid = IVAL(base, offset + 4);
offset 111 source4/smb_server/smb2/tcon.c uid = BVAL(base, offset + 8);
offset 166 source4/smb_server/smb2/tcon.c void smb2srv_push_handle(uint8_t *base, uint_t offset, struct ntvfs_handle *ntvfs)
offset 174 source4/smb_server/smb2/tcon.c SIVAL(base, offset, handle->hid);
offset 175 source4/smb_server/smb2/tcon.c SIVAL(base, offset + 4, handle->tcon->tid);
offset 176 source4/smb_server/smb2/tcon.c SBVAL(base, offset + 8, handle->session->vuid);
offset 1821 source4/torture/basic/denytest.c r.readx.in.offset = 0;
offset 106 source4/torture/basic/disconnect.c lock[0].offset = 0;
offset 279 source4/torture/basic/locking.c uint32_t offset;
offset 282 source4/torture/basic/locking.c #define NEXT_OFFSET offset += (~(uint32_t)0) / torture_numops
offset 299 source4/torture/basic/locking.c for (offset=i=0;i<torture_numops;i++) {
offset 302 source4/torture/basic/locking.c smbcli_lock(cli1->tree, fnum1, offset-1, 1, 0, WRITE_LOCK),
offset 306 source4/torture/basic/locking.c smbcli_lock(cli2->tree, fnum2, offset-2, 1, 0, WRITE_LOCK),
offset 313 source4/torture/basic/locking.c for (offset=i=0;i<torture_numops;i++) {
offset 317 source4/torture/basic/locking.c !NT_STATUS_IS_OK(smbcli_lock(cli1->tree, fnum1, offset-2, 1, 0, WRITE_LOCK)),
offset 321 source4/torture/basic/locking.c !NT_STATUS_IS_OK(smbcli_lock(cli2->tree, fnum2, offset-1, 1, 0, WRITE_LOCK)),
offset 325 source4/torture/basic/locking.c !NT_STATUS_IS_OK(smbcli_lock(cli1->tree, fnum1, offset-1, 1, 0, WRITE_LOCK)),
offset 329 source4/torture/basic/locking.c !NT_STATUS_IS_OK(smbcli_lock(cli2->tree, fnum2, offset-2, 1, 0, WRITE_LOCK)),
offset 335 source4/torture/basic/locking.c for (offset=i=0;i<torture_numops;i++) {
offset 339 source4/torture/basic/locking.c smbcli_unlock(cli1->tree, fnum1, offset-1, 1),
offset 345 source4/torture/basic/locking.c smbcli_unlock(cli2->tree, fnum2, offset-2, 1),
offset 41 source4/torture/basic/misc.c static bool wait_lock(struct smbcli_state *c, int fnum, uint32_t offset, uint32_t len)
offset 43 source4/torture/basic/misc.c while (NT_STATUS_IS_ERR(smbcli_lock(c->tree, fnum, offset, len, -1, WRITE_LOCK))) {
offset 566 source4/torture/basic/misc.c wr.writex.in.offset = 0;
offset 581 source4/torture/basic/misc.c rd.readx.in.offset = state->readcnt*state->lp_params->blocksize;
offset 629 source4/torture/basic/misc.c wr.writex.in.offset = state->writecnt *
offset 2002 source4/torture/gentest.c parm[0].lseek.in.offset = gen_offset();
offset 2008 source4/torture/gentest.c CHECK_EQUAL(lseek.out.offset);
offset 2024 source4/torture/gentest.c parm[0].readx.in.offset = gen_offset();
offset 2053 source4/torture/gentest.c parm[0].writex.in.offset = gen_offset();
offset 2096 source4/torture/gentest.c parm[0].lockx.in.locks[n].offset = gen_offset();
offset 2608 source4/torture/gentest.c parm[0].in.offset = gen_offset();
offset 2635 source4/torture/gentest.c parm[0].in.offset = gen_offset();
offset 2670 source4/torture/gentest.c parm[0].in.locks[n].offset = gen_offset();
offset 254 source4/torture/locktest.c lock[0].offset = start;
offset 301 source4/torture/locktest.c lock[0].offset = start;
offset 46 source4/torture/nbench/nbio.c off_t offset;
offset 84 source4/torture/nbench/nbio.c static bool nb_do_lockx(bool relock, int handle, off_t offset, int size, NTSTATUS status);
offset 115 source4/torture/nbench/nbio.c f->handle, (unsigned long) linfo->offset));
offset 117 source4/torture/nbench/nbio.c if (!nb_do_lockx(true, f->handle, linfo->offset, linfo->size, NT_STATUS_OK)) {
offset 119 source4/torture/nbench/nbio.c f->cp.fname, (unsigned long) linfo->offset);
offset 332 source4/torture/nbench/nbio.c static struct lock_info* find_lock(struct lock_info *linfo, off_t offset, int size)
offset 335 source4/torture/nbench/nbio.c if (linfo->offset == offset &&
offset 543 source4/torture/nbench/nbio.c bool nb_writex(int handle, off_t offset, int size, int ret_size, NTSTATUS status)
offset 562 source4/torture/nbench/nbio.c io.writex.in.offset = offset;
offset 584 source4/torture/nbench/nbio.c bool nb_write(int handle, off_t offset, int size, int ret_size, NTSTATUS status)
offset 603 source4/torture/nbench/nbio.c io.write.in.offset = offset;
offset 625 source4/torture/nbench/nbio.c static bool nb_do_lockx(bool relock, int handle, off_t offset, int size, NTSTATUS status)
offset 636 source4/torture/nbench/nbio.c lck.offset = offset;
offset 657 source4/torture/nbench/nbio.c linfo->offset = offset;
offset 665 source4/torture/nbench/nbio.c bool nb_lockx(int handle, off_t offset, int size, NTSTATUS status)
offset 667 source4/torture/nbench/nbio.c return nb_do_lockx(false, handle, offset, size, status);
offset 670 source4/torture/nbench/nbio.c bool nb_unlockx(int handle, uint_t offset, int size, NTSTATUS status)
offset 681 source4/torture/nbench/nbio.c lck.offset = offset;
offset 699 source4/torture/nbench/nbio.c linfo = find_lock(f->locks, offset, size);
offset 709 source4/torture/nbench/nbio.c bool nb_readx(int handle, off_t offset, int size, int ret_size, NTSTATUS status)
offset 725 source4/torture/nbench/nbio.c io.readx.in.offset = offset;
offset 49 source4/torture/ndr/ndr.c torture_assert(tctx, ndr->offset == ndr->data_size,
offset 51 source4/torture/ndr/ndr.c "%d unread bytes", ndr->data_size - ndr->offset));
offset 106 source4/torture/ndr/ndr.c torture_assert(tctx, ndr->offset == 0,
offset 113 source4/torture/ndr/ndr.c torture_assert(tctx, ndr->offset == 0,
offset 133 source4/torture/ndr/ndr.c torture_assert(tctx, ndr->offset == 0,
offset 250 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->in.values[0].offset, 0, "offset");
offset 281 source4/torture/ndr/winreg.c torture_assert_int_equal(tctx, r->out.values[0].offset, 0, "offset");
offset 196 source4/torture/raw/context.c wr.writex.in.offset = 0;
offset 332 source4/torture/raw/context.c wr.writex.in.offset = 0;
offset 446 source4/torture/raw/context.c wr.writex.in.offset = 0;
offset 494 source4/torture/raw/context.c wr.writex.in.offset = 0;
offset 573 source4/torture/raw/context.c wr.writex.in.offset = 0;
offset 699 source4/torture/raw/context.c wr.writex.in.offset = 0;
offset 806 source4/torture/raw/context.c wr.writex.in.offset = 0;
offset 837 source4/torture/raw/context.c wr.writex.in.offset = 0;
offset 99 source4/torture/raw/lock.c io.lock.in.offset = 0;
offset 114 source4/torture/raw/lock.c io.lock.in.offset = 0;
offset 132 source4/torture/raw/lock.c io.lock.in.offset = 0xEEFFFFFF;
offset 150 source4/torture/raw/lock.c io.lock.in.offset = 0xEEFFFFFF;
offset 168 source4/torture/raw/lock.c io.lock.in.offset = 0xEF000000;
offset 186 source4/torture/raw/lock.c io.lock.in.offset = 10001;
offset 238 source4/torture/raw/lock.c lock[0].offset = 10;
offset 249 source4/torture/raw/lock.c lock[0].offset = 0xEEFFFFFF;
offset 267 source4/torture/raw/lock.c lock[0].offset = 0xEF000000;
offset 285 source4/torture/raw/lock.c lock[0].offset = ~0;
offset 303 source4/torture/raw/lock.c lock[0].offset = ~0;
offset 321 source4/torture/raw/lock.c lock[0].offset = 1;
offset 322 source4/torture/raw/lock.c lock[0].offset <<= 63;
offset 340 source4/torture/raw/lock.c lock[0].offset = 1;
offset 341 source4/torture/raw/lock.c lock[0].offset <<= 63;
offset 342 source4/torture/raw/lock.c lock[0].offset--;
offset 360 source4/torture/raw/lock.c lock[0].offset = ~0;
offset 436 source4/torture/raw/lock.c lock[0].offset = 0;
offset 517 source4/torture/raw/lock.c lock[0].offset = 100;
offset 537 source4/torture/raw/lock.c lock[0].offset = 0;
offset 544 source4/torture/raw/lock.c lock[0].offset = 100;
offset 551 source4/torture/raw/lock.c lock[0].offset = 100;
offset 667 source4/torture/raw/lock.c lock[0].offset = 100;
offset 716 source4/torture/raw/lock.c lock[0].offset = 100;
offset 774 source4/torture/raw/lock.c lock[0].offset = 100;
offset 872 source4/torture/raw/lock.c lock[0].offset = 100;
offset 923 source4/torture/raw/lock.c lock[0].offset = 100;
offset 933 source4/torture/raw/lock.c lock[0].offset = 100;
offset 947 source4/torture/raw/lock.c lock[0].offset = 110;
offset 957 source4/torture/raw/lock.c lock[0].offset = 100;
offset 967 source4/torture/raw/lock.c lock[0].offset = 99;
offset 977 source4/torture/raw/lock.c lock[0].offset = 100;
offset 988 source4/torture/raw/lock.c lock[0].offset = 100;
offset 998 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1012 source4/torture/raw/lock.c lock[0].offset = 101;
offset 1026 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1041 source4/torture/raw/lock.c lock[0].offset = 105;
offset 1055 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1069 source4/torture/raw/lock.c lock[0].offset = 95;
offset 1083 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1102 source4/torture/raw/lock.c lock[0].offset = 120;
offset 1112 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1156 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1172 source4/torture/raw/lock.c lock[0].offset = 105;
offset 1204 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1220 source4/torture/raw/lock.c lock[0].offset = 105;
offset 1228 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1254 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1327 source4/torture/raw/lock.c lock[0].offset = 100;
offset 1435 source4/torture/raw/lock.c zero_byte_tests[i].lock1.offset,
offset 1438 source4/torture/raw/lock.c zero_byte_tests[i].lock2.offset,
offset 1521 source4/torture/raw/lock.c lock1.offset = 0;
offset 1524 source4/torture/raw/lock.c lock2.offset = 0;
offset 1591 source4/torture/raw/lock.c lock1.offset = 10;
offset 1594 source4/torture/raw/lock.c lock2.offset = 5;
offset 1701 source4/torture/raw/lock.c lock1.offset = 0;
offset 1704 source4/torture/raw/lock.c lock2.offset = 10;
offset 1819 source4/torture/raw/lock.c lock1.offset = 0;
offset 1822 source4/torture/raw/lock.c lock2.offset = 0;
offset 85 source4/torture/raw/lockbench.c lock.offset = state->lock_offset;
offset 91 source4/torture/raw/lockbench.c lock.offset = state->lock_offset;
offset 96 source4/torture/raw/lockbench.c lock.offset = state->unlock_offset;
offset 176 source4/torture/raw/mux.c io.writex.in.offset = 0;
offset 228 source4/torture/raw/mux.c lock[0].offset = 0;
offset 276 source4/torture/raw/mux.c lock[0].offset = 0;
offset 1140 source4/torture/raw/open.c lock[0].offset = 0;
offset 1358 source4/torture/raw/open.c io.openxreadx.in.offset = 0;
offset 904 source4/torture/raw/oplock.c rd.read.in.offset = 0;
offset 1378 source4/torture/raw/oplock.c wr.write.in.offset = 0;
offset 1395 source4/torture/raw/oplock.c wr.write.in.offset = 0;
offset 54 source4/torture/raw/pingpong.c static void lock_byte(struct smbcli_state *cli, int fd, int offset, int lock_timeout)
offset 66 source4/torture/raw/pingpong.c lock.offset = offset;
offset 92 source4/torture/raw/pingpong.c static void unlock_byte(struct smbcli_state *cli, int fd, int offset)
offset 103 source4/torture/raw/pingpong.c lock.offset = offset;
offset 119 source4/torture/raw/pingpong.c static void write_byte(struct smbcli_state *cli, int fd, uint8_t c, int offset)
offset 126 source4/torture/raw/pingpong.c io.writex.in.offset = offset;
offset 139 source4/torture/raw/pingpong.c static void read_byte(struct smbcli_state *cli, int fd, uint8_t *c, int offset)
offset 148 source4/torture/raw/pingpong.c io.readx.in.offset = offset;
offset 116 source4/torture/raw/read.c io.read.in.offset = 0;
offset 140 source4/torture/raw/read.c io.read.in.offset = 0;
offset 153 source4/torture/raw/read.c io.read.in.offset = 1;
offset 166 source4/torture/raw/read.c io.read.in.offset = ~0;
offset 178 source4/torture/raw/read.c io.read.in.offset = 0;
offset 194 source4/torture/raw/read.c io.read.in.offset = 0;
offset 243 source4/torture/raw/read.c io.lockread.in.offset = 1;
offset 274 source4/torture/raw/read.c io.lockread.in.offset = 0;
offset 292 source4/torture/raw/read.c io.lockread.in.offset = 1;
offset 309 source4/torture/raw/read.c io.lockread.in.offset = ~0;
offset 321 source4/torture/raw/read.c io.lockread.in.offset = 0;
offset 341 source4/torture/raw/read.c io.lockread.in.offset = 0;
offset 389 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 419 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 436 source4/torture/raw/read.c io.readx.in.offset = 1;
offset 452 source4/torture/raw/read.c io.readx.in.offset = 0xffffffff;
offset 464 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 484 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 495 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 512 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 524 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 536 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 573 source4/torture/raw/read.c io.readx.in.offset = 0;
offset 585 source4/torture/raw/read.c io.readx.in.offset = ((uint64_t)0x2) << 32;
offset 592 source4/torture/raw/read.c if (NT_STATUS_IS_ERR(smbcli_lock64(cli->tree, fnum, io.readx.in.offset, 1, 0, WRITE_LOCK))) {
offset 645 source4/torture/raw/read.c io.readbraw.in.offset = 0;
offset 671 source4/torture/raw/read.c io.readbraw.in.offset = 0;
offset 684 source4/torture/raw/read.c io.readbraw.in.offset = 1;
offset 698 source4/torture/raw/read.c io.readbraw.in.offset = ~0;
offset 711 source4/torture/raw/read.c io.readbraw.in.offset = 0;
offset 721 source4/torture/raw/read.c io.readbraw.in.offset = 0;
offset 731 source4/torture/raw/read.c io.readbraw.in.offset = 0;
offset 748 source4/torture/raw/read.c io.readbraw.in.offset = 0;
offset 757 source4/torture/raw/read.c io.readbraw.in.offset = 0;
offset 767 source4/torture/raw/read.c io.readbraw.in.offset = ((uint64_t)0x2) << 32;
offset 825 source4/torture/raw/read.c wr.writex.in.offset = 0;
offset 859 source4/torture/raw/read.c rd.readx.in.offset = 0;
offset 874 source4/torture/raw/read.c rd.readx.in.offset = 0;
offset 906 source4/torture/raw/read.c rd.readx.in.offset = 0;
offset 921 source4/torture/raw/read.c rd.readx.in.offset = 0;
offset 770 source4/torture/raw/samba3misc.c lock_entry.offset = 0;
offset 76 source4/torture/raw/seek.c io.lseek.in.offset = 0;
offset 83 source4/torture/raw/seek.c io.lseek.in.offset = 17;
offset 86 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 17);
offset 94 source4/torture/raw/seek.c io.lseek.in.offset = -3;
offset 97 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 14);
offset 102 source4/torture/raw/seek.c io.lseek.in.offset = 0;
offset 109 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, finfo.all_info.out.size);
offset 114 source4/torture/raw/seek.c io.lseek.in.offset = -1;
offset 117 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 0xffffffff);
offset 129 source4/torture/raw/seek.c io.lseek.in.offset = 1000;
offset 132 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 999);
offset 158 source4/torture/raw/seek.c io.lseek.in.offset = 0;
offset 161 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 2);
offset 178 source4/torture/raw/seek.c CHECK_VALUE(io.lseek.out.offset, 1);
offset 131 source4/torture/raw/write.c io.write.in.offset = 0;
offset 142 source4/torture/raw/write.c io.write.in.offset = 4;
offset 161 source4/torture/raw/write.c io.write.in.offset = 0;
offset 178 source4/torture/raw/write.c io.write.in.offset = 0;
offset 201 source4/torture/raw/write.c io.write.in.offset = 0xFFFFFFFF - 2000;
offset 206 source4/torture/raw/write.c CHECK_ALL_INFO(io.write.in.count + (uint64_t)io.write.in.offset, size);
offset 209 source4/torture/raw/write.c if (smbcli_read(cli->tree, fnum, buf, io.write.in.offset, 4000) != 4000) {
offset 264 source4/torture/raw/write.c io.writex.in.offset = 0;
offset 277 source4/torture/raw/write.c io.writex.in.offset = 4;
offset 296 source4/torture/raw/write.c io.writex.in.offset = 0;
offset 313 source4/torture/raw/write.c io.writex.in.offset = 0;
offset 321 source4/torture/raw/write.c io.writex.in.offset = 0;
offset 344 source4/torture/raw/write.c io.writex.in.offset = 0;
offset 361 source4/torture/raw/write.c io.writex.in.offset = 0xFFFFFFFF - 2000;
offset 366 source4/torture/raw/write.c CHECK_ALL_INFO(io.writex.in.count + (uint64_t)io.writex.in.offset, size);
offset 369 source4/torture/raw/write.c if (smbcli_read(cli->tree, fnum, buf, io.writex.in.offset, 4000) != 4000) {
offset 381 source4/torture/raw/write.c io.writex.in.offset = ((uint64_t)1) << i;
offset 390 source4/torture/raw/write.c CHECK_ALL_INFO(io.writex.in.count + (uint64_t)io.writex.in.offset, size);
offset 393 source4/torture/raw/write.c if (smbcli_read(cli->tree, fnum, buf, io.writex.in.offset, 4000) != 4000) {
offset 447 source4/torture/raw/write.c io.writeunlock.in.offset = 0;
offset 458 source4/torture/raw/write.c io.writeunlock.in.offset = 4;
offset 471 source4/torture/raw/write.c smbcli_lock(cli->tree, fnum, io.writeunlock.in.offset, io.writeunlock.in.count,
offset 490 source4/torture/raw/write.c io.writeunlock.in.offset = 0;
offset 492 source4/torture/raw/write.c smbcli_lock(cli->tree, fnum, io.writeunlock.in.offset, io.writeunlock.in.count,
offset 512 source4/torture/raw/write.c io.writeunlock.in.offset = 0;
offset 530 source4/torture/raw/write.c io.writeunlock.in.offset = 0xFFFFFFFF - 2000;
offset 532 source4/torture/raw/write.c smbcli_lock(cli->tree, fnum, io.writeunlock.in.offset, io.writeunlock.in.count,
offset 537 source4/torture/raw/write.c CHECK_ALL_INFO(io.writeunlock.in.count + (uint64_t)io.writeunlock.in.offset, size);
offset 540 source4/torture/raw/write.c if (smbcli_read(cli->tree, fnum, buf, io.writeunlock.in.offset, 4000) != 4000) {
offset 590 source4/torture/raw/write.c io.writeclose.in.offset = 0;
offset 605 source4/torture/raw/write.c io.writeclose.in.offset = 4;
offset 645 source4/torture/raw/write.c io.writeclose.in.offset = 0;
offset 668 source4/torture/raw/write.c io.writeclose.in.offset = 0;
offset 686 source4/torture/raw/write.c io.writeclose.in.offset = 0xFFFFFFFF - 2000;
offset 691 source4/torture/raw/write.c CHECK_ALL_INFO(io.writeclose.in.count + (uint64_t)io.writeclose.in.offset, size);
offset 697 source4/torture/raw/write.c if (smbcli_read(cli->tree, fnum, buf, io.writeclose.in.offset, 4000) != 4000) {
offset 439 source4/torture/rpc/dssync.c uint32_t offset = i * 16;
offset 440 source4/torture/rpc/dssync.c sam_rid_crypt(rid, checked_buffer.data + offset, plain_buffer.data + offset, 0);
offset 114 source4/torture/rpc/eventlog.c r.in.offset = 0;
offset 191 source4/torture/rpc/eventlog.c r.in.offset++;
offset 232 source4/torture/rpc/frsapi.c info->offset = 0x2c;
offset 1502 source4/torture/rpc/winreg.c r.in.values[0].offset = 0;
offset 89 source4/torture/smb2/connect.c w.in.offset = 0;
offset 120 source4/torture/smb2/connect.c r.in.offset = 0;
offset 69 source4/torture/smb2/lock.c el[0].offset = 0x0000000000000000;
offset 79 source4/torture/smb2/lock.c el[0].offset = 0;
offset 95 source4/torture/smb2/lock.c el[0].offset = UINT64_MAX;
offset 132 source4/torture/smb2/lock.c el[0].offset = UINT32_MAX;
offset 183 source4/torture/smb2/lock.c el[0].offset = 0x00000000FFFFFFFF;
offset 193 source4/torture/smb2/lock.c el[0].offset = 0x00000000FFFFFFFF;
offset 212 source4/torture/smb2/lock.c el[0].offset = 1;
offset 243 source4/torture/smb2/lock.c el[0].offset = 9999;
offset 246 source4/torture/smb2/lock.c el[1].offset = 9999;
offset 343 source4/torture/smb2/lock.c el[0].offset = 0;
offset 354 source4/torture/smb2/lock.c el[0].offset = ARRAY_SIZE(buf)/2;
offset 381 source4/torture/smb2/lock.c wr.in.offset = ARRAY_SIZE(buf)/2;
offset 389 source4/torture/smb2/lock.c rd.in.offset = ARRAY_SIZE(buf)/2;
offset 397 source4/torture/smb2/lock.c wr.in.offset = ARRAY_SIZE(buf)/2;
offset 405 source4/torture/smb2/lock.c rd.in.offset = ARRAY_SIZE(buf)/2;
offset 414 source4/torture/smb2/lock.c el[0].offset = ARRAY_SIZE(buf)/2;
offset 424 source4/torture/smb2/lock.c wr.in.offset = ARRAY_SIZE(buf)/2;
offset 432 source4/torture/smb2/lock.c rd.in.offset = ARRAY_SIZE(buf)/2;
offset 506 source4/torture/smb2/lock.c el[0].offset = 0;
offset 53 source4/torture/smb2/maxwrite.c w.in.offset = 0;
offset 87 source4/torture/smb2/maxwrite.c r.in.offset = 0;
offset 70 source4/torture/smb2/read.c rd.in.offset = 0;
offset 79 source4/torture/smb2/read.c rd.in.offset = sizeof(buf);
offset 85 source4/torture/smb2/read.c rd.in.offset = sizeof(buf);
offset 92 source4/torture/smb2/read.c rd.in.offset = sizeof(buf);
offset 98 source4/torture/smb2/read.c rd.in.offset = sizeof(buf) - 1;
offset 105 source4/torture/smb2/read.c rd.in.offset = sizeof(buf) - 1;
offset 111 source4/torture/smb2/read.c rd.in.offset = 0;
offset 117 source4/torture/smb2/read.c rd.in.offset = 0;
offset 123 source4/torture/smb2/read.c rd.in.offset = 0;
offset 154 source4/torture/smb2/read.c rd.in.offset = 0;
offset 195 source4/torture/smb2/read.c rd.in.offset = 0;
offset 42 source4/torture/smb2/util.c const void *buf, off_t offset, size_t size)
offset 48 source4/torture/smb2/util.c w.in.offset = offset;
offset 325 source4/torture/smb2/util.c r.in.offset = 0;
offset 104 source4/torture/unix/whoami.c DATA_BLOB *data, size_t *offset,
offset 107 source4/torture/unix/whoami.c size_t remain = data->length - *offset;
offset 116 source4/torture/unix/whoami.c (*psid)->sid_rev_num = CVAL(data->data, *offset);
offset 117 source4/torture/unix/whoami.c (*psid)->num_auths = CVAL(data->data, *offset + 1);
offset 118 source4/torture/unix/whoami.c memcpy((*psid)->id_auth, data->data + *offset + 2, 6);
offset 120 source4/torture/unix/whoami.c (*offset) += 8;
offset 121 source4/torture/unix/whoami.c remain = data->length - *offset;
offset 131 source4/torture/unix/whoami.c (*psid)->sub_auths[i] = IVAL(data->data, *offset);
offset 132 source4/torture/unix/whoami.c (*offset) += 4;
offset 146 source4/torture/unix/whoami.c size_t offset;
offset 201 source4/torture/unix/whoami.c offset = WHOAMI_REQUIRED_SIZE;
offset 206 source4/torture/unix/whoami.c if (tp.out.data.length == offset) {
offset 218 source4/torture/unix/whoami.c int remain = tp.out.data.length - offset;
offset 233 source4/torture/unix/whoami.c whoami->gid_list[i] = BVAL(tp.out.data.data, offset);
offset 234 source4/torture/unix/whoami.c offset += 8;
offset 239 source4/torture/unix/whoami.c if (tp.out.data.length == offset) {
offset 247 source4/torture/unix/whoami.c whoami->num_sid_bytes, (tp.out.data.length - offset),
offset 259 source4/torture/unix/whoami.c &tp.out.data, &offset,
offset 268 source4/torture/unix/whoami.c torture_assert_int_equal(torture, tp.out.data.length, offset,
offset 174 source4/web_server/wsgi.c size_t offset;
offset 189 source4/web_server/wsgi.c size = self->web->input.partial.length-self->offset;
offset 191 source4/web_server/wsgi.c size = MIN(size, self->web->input.partial.length-self->offset);
offset 193 source4/web_server/wsgi.c ret = PyString_FromStringAndSize((char *)self->web->input.partial.data+self->offset, size);
offset 194 source4/web_server/wsgi.c self->offset += size;
offset 249 source4/web_server/wsgi.c ret->offset = 0;