Home
last modified time | relevance | path

Searched refs:writeclose (Results 1 – 14 of 14) sorted by relevance

/dports/net/samba412/samba-4.12.15/source4/torture/raw/
H A Dwrite.c580 io.writeclose.in.count = 0; in test_writeclose()
581 io.writeclose.in.offset = 0; in test_writeclose()
582 io.writeclose.in.mtime = 0; in test_writeclose()
583 io.writeclose.in.data = buf; in test_writeclose()
586 CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count); in test_writeclose()
590 CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count); in test_writeclose()
595 io.writeclose.in.count = 9; in test_writeclose()
596 io.writeclose.in.offset = 4; in test_writeclose()
597 io.writeclose.in.data = buf; in test_writeclose()
617 CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count); in test_writeclose()
[all …]
/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/torture/raw/
H A Dwrite.c585 io.writeclose.in.count = 0; in test_writeclose()
586 io.writeclose.in.offset = 0; in test_writeclose()
587 io.writeclose.in.mtime = 0; in test_writeclose()
588 io.writeclose.in.data = buf; in test_writeclose()
591 CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count); in test_writeclose()
595 CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count); in test_writeclose()
600 io.writeclose.in.count = 9; in test_writeclose()
601 io.writeclose.in.offset = 4; in test_writeclose()
602 io.writeclose.in.data = buf; in test_writeclose()
623 CHECK_VALUE(io.writeclose.out.nwritten, io.writeclose.in.count); in test_writeclose()
[all …]
/dports/net/samba412/samba-4.12.15/source4/libcli/raw/
H A Drawreadwrite.c241 SETUP_REQUEST(SMBwriteclose, 6, 1 + parms->writeclose.in.count); in smb_raw_write_send()
242 SSVAL(req->out.vwv, VWV(0), parms->writeclose.in.file.fnum); in smb_raw_write_send()
243 SSVAL(req->out.vwv, VWV(1), parms->writeclose.in.count); in smb_raw_write_send()
244 SIVAL(req->out.vwv, VWV(2), parms->writeclose.in.offset); in smb_raw_write_send()
246 req->out.vwv, VWV(4), parms->writeclose.in.mtime); in smb_raw_write_send()
248 if (parms->writeclose.in.count > 0) { in smb_raw_write_send()
249 memcpy(req->out.data+1, parms->writeclose.in.data, in smb_raw_write_send()
250 parms->writeclose.in.count); in smb_raw_write_send()
319 parms->writeclose.out.nwritten = SVAL(req->in.vwv, VWV(0)); in smb_raw_write_recv()
H A Dinterfaces.h1989 } writeclose; member
/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/libcli/raw/
H A Drawreadwrite.c242 SETUP_REQUEST(SMBwriteclose, 6, 1 + parms->writeclose.in.count); in smb_raw_write_send()
243 SSVAL(req->out.vwv, VWV(0), parms->writeclose.in.file.fnum); in smb_raw_write_send()
244 SSVAL(req->out.vwv, VWV(1), parms->writeclose.in.count); in smb_raw_write_send()
245 SIVAL(req->out.vwv, VWV(2), parms->writeclose.in.offset); in smb_raw_write_send()
247 req->out.vwv, VWV(4), parms->writeclose.in.mtime); in smb_raw_write_send()
249 if (parms->writeclose.in.count > 0) { in smb_raw_write_send()
250 memcpy(req->out.data+1, parms->writeclose.in.data, in smb_raw_write_send()
251 parms->writeclose.in.count); in smb_raw_write_send()
320 parms->writeclose.out.nwritten = SVAL(req->in.vwv, VWV(0)); in smb_raw_write_recv()
H A Dinterfaces.h1746 } writeclose; member
/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/ntvfs/
H A Dntvfs_generic.c1039 wr->writeclose.out.nwritten = wr2->generic.out.nwritten; in ntvfs_map_write_finish()
1047 cl->close.in.file.ntvfs = wr->writeclose.in.file.ntvfs; in ntvfs_map_write_finish()
1048 cl->close.in.write_time = wr->writeclose.in.mtime; in ntvfs_map_write_finish()
1125 wr2->writex.in.file.ntvfs= wr->writeclose.in.file.ntvfs; in ntvfs_map_write()
1126 wr2->writex.in.offset = wr->writeclose.in.offset; in ntvfs_map_write()
1129 wr2->writex.in.count = wr->writeclose.in.count; in ntvfs_map_write()
1130 wr2->writex.in.data = wr->writeclose.in.data; in ntvfs_map_write()
/dports/net/samba412/samba-4.12.15/source4/smb_server/smb/
H A Dreply.c1204 io->writeclose.level = RAW_WRITE_WRITECLOSE; in smbsrv_reply_writeclose()
1205 io->writeclose.in.file.ntvfs = smbsrv_pull_fnum(req, req->in.vwv, VWV(0)); in smbsrv_reply_writeclose()
1206 io->writeclose.in.count = SVAL(req->in.vwv, VWV(1)); in smbsrv_reply_writeclose()
1207 io->writeclose.in.offset = IVAL(req->in.vwv, VWV(2)); in smbsrv_reply_writeclose()
1208 io->writeclose.in.mtime = srv_pull_dos_date3(req->smb_conn, req->in.vwv + VWV(4)); in smbsrv_reply_writeclose()
1209 io->writeclose.in.data = req->in.data + 1; in smbsrv_reply_writeclose()
1212 if (req_data_oob(&req->in.bufinfo, io->writeclose.in.data, io->writeclose.in.count)) { in smbsrv_reply_writeclose()
1217 SMBSRV_CHECK_FILE_HANDLE(io->writeclose.in.file.ntvfs); in smbsrv_reply_writeclose()
/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/smb_server/smb/
H A Dreply.c1159 io->writeclose.level = RAW_WRITE_WRITECLOSE; in smbsrv_reply_writeclose()
1160 io->writeclose.in.file.ntvfs = smbsrv_pull_fnum(req, req->in.vwv, VWV(0)); in smbsrv_reply_writeclose()
1161 io->writeclose.in.count = SVAL(req->in.vwv, VWV(1)); in smbsrv_reply_writeclose()
1162 io->writeclose.in.offset = IVAL(req->in.vwv, VWV(2)); in smbsrv_reply_writeclose()
1163 io->writeclose.in.mtime = srv_pull_dos_date3(req->smb_conn, req->in.vwv + VWV(4)); in smbsrv_reply_writeclose()
1164 io->writeclose.in.data = req->in.data + 1; in smbsrv_reply_writeclose()
1167 if (req_data_oob(req, io->writeclose.in.data, io->writeclose.in.count)) { in smbsrv_reply_writeclose()
1172 SMBSRV_CHECK_FILE_HANDLE(io->writeclose.in.file.ntvfs); in smbsrv_reply_writeclose()
/dports/net/samba412/samba-4.12.15/source4/ntvfs/
H A Dntvfs_generic.c1257 wr->writeclose.out.nwritten = wr2->generic.out.nwritten; in ntvfs_map_write_finish()
1265 cl->close.in.file.ntvfs = wr->writeclose.in.file.ntvfs; in ntvfs_map_write_finish()
1266 cl->close.in.write_time = wr->writeclose.in.mtime; in ntvfs_map_write_finish()
1343 wr2->writex.in.file.ntvfs= wr->writeclose.in.file.ntvfs; in ntvfs_map_write()
1344 wr2->writex.in.offset = wr->writeclose.in.offset; in ntvfs_map_write()
1347 wr2->writex.in.count = wr->writeclose.in.count; in ntvfs_map_write()
1348 wr2->writex.in.data = wr->writeclose.in.data; in ntvfs_map_write()
/dports/games/scummvm/scummvm-2.5.1/engines/glk/agt/
H A Dfilename.cpp510 void writeclose(genfile f, file_id_type fileid) { in writeclose() function
H A Dagility.h1198 void writeclose(genfile f, file_id_type fileid);
H A Dutil.cpp781 writeclose(bfile, bw_fileid); in bw_close()
/dports/multimedia/dvdauthor/dvdauthor-d5bb0b/src/
H A Ddvdvob.c486 static void writeclose() in writeclose() function
1167 writeclose(); in FindVobus()
2011 writeclose(); in FindVobus()