/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/IO/ |
H A D | StreamWriter.cs | 331 WriteCore(buffer, _autoFlush); in Write() 354 WriteCore(new ReadOnlySpan<char>(buffer, index, count), _autoFlush); in Write() 361 WriteCore(buffer, _autoFlush); in Write() 371 private unsafe void WriteCore(ReadOnlySpan<char> buffer, bool autoFlush) in WriteCore() method in System.IO.StreamWriter 436 WriteCore(value.AsReadOnlySpan(), _autoFlush); in Write() 449 WriteCore(value.AsReadOnlySpan(), autoFlush: false); in WriteLine() 451 WriteCore(new ReadOnlySpan<char>(CoreNewLine), autoFlush: true); in WriteLine() 459 WriteCore(value, autoFlush: false); in WriteLine() 460 WriteCore(new ReadOnlySpan<char>(CoreNewLine), autoFlush: true); in WriteLine()
|
H A D | PinnedBufferMemoryStream.cs | 43 public override void Write(ReadOnlySpan<byte> source) => WriteCore(source);
|
H A D | UnmanagedMemoryStream.cs | 659 WriteCore(new Span<byte>(buffer, offset, count)); in Write() 666 WriteCore(source); in Write() 677 internal unsafe void WriteCore(ReadOnlySpan<byte> source) in WriteCore() method in System.IO.UnmanagedMemoryStream
|
H A D | FileStream.Windows.cs | 359 WriteCore(new ReadOnlySpan<byte>(GetBuffer(), 0, _writePos)); in FlushWriteBuffer() 685 WriteCore(new ReadOnlySpan<byte>(GetBuffer(), 0, _writePos)); in WriteSpan() 693 WriteCore(source); in WriteSpan() 707 private unsafe void WriteCore(ReadOnlySpan<byte> source) in WriteCore() method in System.IO.FileStream
|
/dports/devel/upp/upp/bazaar/plugin/gdal/ogr/ogrsf_frmts/dxf/ |
H A D | ogrdxfwriterlayer.cpp | 205 OGRErr OGRDXFWriterLayer::WriteCore( OGRFeature *poFeature ) in WriteCore() function in OGRDXFWriterLayer 251 WriteCore( poFeature ); in WriteINSERT() 326 WriteCore( poFeature ); in WritePOINT() 415 WriteCore( poFeature ); in WriteTEXT() 670 WriteCore( poFeature ); in WritePOLYLINE() 797 WriteCore( poFeature ); in WritePOLYLINE() 814 WriteCore( poFeature ); in WritePOLYLINE() 827 WriteCore( poFeature ); in WritePOLYLINE() 906 WriteCore( poFeature ); in WriteHATCH() 1059 WriteCore( poFeature ); in WriteHATCH()
|
/dports/graphics/py-gdal/gdal-3.3.3/ogr/ogrsf_frmts/dxf/ |
H A D | ogrdxfwriterlayer.cpp | 182 OGRErr OGRDXFWriterLayer::WriteCore( OGRFeature *poFeature ) in WriteCore() function in OGRDXFWriterLayer 245 WriteCore( poFeature ); in WriteINSERT() 349 WriteCore( poFeature ); in WritePOINT() 486 WriteCore( poFeature ); in WriteTEXT() 780 WriteCore( poFeature ); in WritePOLYLINE() 952 WriteCore( poFeature ); in WritePOLYLINE() 971 WriteCore( poFeature ); in WritePOLYLINE() 983 WriteCore( poFeature ); in WritePOLYLINE() 1059 WriteCore( poFeature ); in WriteHATCH() 1209 WriteCore( poFeature ); in WriteHATCH()
|
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/ogr/ogrsf_frmts/dxf/ |
H A D | ogrdxfwriterlayer.cpp | 182 OGRErr OGRDXFWriterLayer::WriteCore( OGRFeature *poFeature ) in WriteCore() function in OGRDXFWriterLayer 245 WriteCore( poFeature ); in WriteINSERT() 349 WriteCore( poFeature ); in WritePOINT() 486 WriteCore( poFeature ); in WriteTEXT() 780 WriteCore( poFeature ); in WritePOLYLINE() 952 WriteCore( poFeature ); in WritePOLYLINE() 971 WriteCore( poFeature ); in WritePOLYLINE() 983 WriteCore( poFeature ); in WritePOLYLINE() 1059 WriteCore( poFeature ); in WriteHATCH() 1209 WriteCore( poFeature ); in WriteHATCH()
|
/dports/graphics/gdal/gdal-3.3.3/ogr/ogrsf_frmts/dxf/ |
H A D | ogrdxfwriterlayer.cpp | 182 OGRErr OGRDXFWriterLayer::WriteCore( OGRFeature *poFeature ) in WriteCore() function in OGRDXFWriterLayer 245 WriteCore( poFeature ); in WriteINSERT() 349 WriteCore( poFeature ); in WritePOINT() 486 WriteCore( poFeature ); in WriteTEXT() 780 WriteCore( poFeature ); in WritePOLYLINE() 952 WriteCore( poFeature ); in WritePOLYLINE() 971 WriteCore( poFeature ); in WritePOLYLINE() 983 WriteCore( poFeature ); in WritePOLYLINE() 1059 WriteCore( poFeature ); in WriteHATCH() 1209 WriteCore( poFeature ); in WriteHATCH()
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/IO/ |
H A D | BufferedStream2.cs | 112 WriteCore(array, offset, count, true); in Write() 141 WriteCore(_buffer, 0, oldPos, true); in Write() 536 WriteCore(_buffer, 0, _writePos, blockForWrite); in FlushWrite() 627 private void WriteCore(byte[] buffer, int offset, int count, bool blockForWrite) in WriteCore() method in System.IO.BufferedStream2 630 WriteCore(buffer, offset, count, blockForWrite, out streamPos); in WriteCore() 632 …protected abstract void WriteCore(byte[] buffer, int offset, int count, bool blockForWrite, out lo… in WriteCore() method in System.IO.BufferedStream2
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression.Brotli/src/System/IO/Compression/enc/ |
H A D | BrotliStream.Compress.cs | 24 WriteCore(new ReadOnlySpan<byte>(buffer, offset, count)); in Write() 29 WriteCore(source); in Write() 32 internal void WriteCore(ReadOnlySpan<byte> source, bool isFinalBlock = false) in WriteCore() method in System.IO.Compression.BrotliStream
|
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Http.SelfHost/ServiceModel/Channels/ |
H A D | BufferedOutputStream.cs | 206 WriteCore(null, 0, size); in Skip() 211 WriteCore(buffer, offset, count); in Write() 237 private void WriteCore(byte[] buffer, int offset, int size) in WriteCore() method in System.Web.Http.SelfHost.ServiceModel.Channels.BufferedOutputStream
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Internals/System/Runtime/ |
H A D | BufferedOutputStream.cs | 245 WriteCore(null, 0, size); in Skip() 250 WriteCore(buffer, offset, size); in Write() 258 void WriteCore(byte[] buffer, int offset, int size) in WriteCore() method in System.Runtime.BufferedOutputStream
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.Debug/tests/ |
H A D | DebugTests.cs | 173 writeCoreHook.SetValue(null, new Action<string>(WriteLogger.s_instance.WriteCore)); in VerifyLogged() 207 writeCoreHook.SetValue(null, new Action<string>(WriteLogger.s_instance.WriteCore)); in VerifyAssert() 256 public void WriteCore(string message) in WriteCore() method in System.Diagnostics.Tests.DebugTests.WriteLogger
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/corert/ |
H A D | Debug.cs | 10 static void WriteCore (string message) in WriteCore() method in System.Diagnostics.Private.Debug
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Console/tests/ |
H A D | ReadAndWrite.cs | 24 WriteCore(); in WriteOverloads() 45 WriteCore(); in WriteOverloadsToRealConsole() 76 private static void WriteCore() in WriteCore() method in ReadAndWrite
|
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/IO/ |
H A D | PinnedBufferMemoryStream.cs | 43 public override void Write(ReadOnlySpan<byte> source) => WriteCore(source);
|
H A D | UnmanagedMemoryStream.cs | 659 WriteCore(new Span<byte>(buffer, offset, count)); in Write() 666 WriteCore(source); in Write() 677 internal unsafe void WriteCore(ReadOnlySpan<byte> source) in WriteCore() method in System.IO.UnmanagedMemoryStream
|
H A D | FileStream.Windows.cs | 359 WriteCore(new ReadOnlySpan<byte>(GetBuffer(), 0, _writePos)); in FlushWriteBuffer() 685 WriteCore(new ReadOnlySpan<byte>(GetBuffer(), 0, _writePos)); in WriteSpan() 693 WriteCore(source); in WriteSpan() 707 private unsafe void WriteCore(ReadOnlySpan<byte> source) in WriteCore() method in System.IO.FileStream
|
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Diagnostics/ |
H A D | Debug.Windows.cs | 26 private static void WriteCore(string message) in WriteCore() method in System.Diagnostics.Debug
|
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/Diagnostics/ |
H A D | Debug.Unix.cs | 29 private static void WriteCore(string message) in WriteCore() method in System.Diagnostics.Debug
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/Diagnostics/ |
H A D | Debug.Unix.cs | 29 private static void WriteCore(string message) in WriteCore() method in System.Diagnostics.Debug
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression/src/System/IO/Compression/DeflateZLib/ |
H A D | DeflateStream.cs | 468 WriteCore(new ReadOnlySpan<byte>(array, offset, count)); in Write() 482 WriteCore(source); in Write() 486 internal void WriteCore(ReadOnlySpan<byte> source) in WriteCore() method in System.IO.Compression.DeflateStream
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression.Brotli/src/System/IO/Compression/ |
H A D | BrotliStream.cs | 59 WriteCore(ReadOnlySpan<byte>.Empty, isFinalBlock: true); in Dispose()
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.HttpListener/src/System/Net/ |
H A D | HttpResponseStream.cs | 69 WriteCore(buffer, offset, size); in Write()
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Pipes/src/System/IO/Pipes/ |
H A D | PipeStream.cs | 232 WriteCore(new ReadOnlySpan<byte>(buffer, offset, count)); in Write() 249 WriteCore(source); in Write()
|