Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for writeHexadecimalUnsignedLong (0.27 seconds)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

        override fun write(
          source: Buffer,
          byteCount: Long,
        ) {
          check(!closed) { "closed" }
          if (byteCount == 0L) return
    
          with(socket.sink) {
            writeHexadecimalUnsignedLong(byteCount)
            writeUtf8("\r\n")
            write(source, byteCount)
            writeUtf8("\r\n")
          }
        }
    
        @Synchronized
        override fun flush() {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 17.6K bytes
    - Click Count (7)
Back to Top