Home
last modified time | relevance | path

Searched refs:wantMore (Results 1 – 17 of 17) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Mono.Btls/
H A DMonoBtlsBio.cs222 int Read (byte[] buffer, int offset, int size, out bool wantMore); in Read() argument
273 delegate int BioReadFunc (IntPtr bio, IntPtr data, int dataLength, out int wantMore); in BioReadFunc() argument
295 int OnRead (IntPtr data, int dataLength, out int wantMore) in OnRead() argument
300 wantMore = wantMoreBool ? 1 : 0; in OnRead()
308 static int OnRead (IntPtr instance, IntPtr data, int dataLength, out int wantMore) in OnRead() argument
312 return c.OnRead (data, dataLength, out wantMore); in OnRead()
315 wantMore = 0; in OnRead()
381 public int Read (byte[] buffer, int offset, int size, out bool wantMore) in Read() argument
383 wantMore = false; in Read()
416 public int Read (byte[] buffer, int offset, int size, out bool wantMore) in Read() argument
[all …]
H A DMonoBtlsContext.cs303 public override (int ret, bool wantMore) Read (byte[] buffer, int offset, int size) in Read()
332 public override (int ret, bool wantMore) Write (byte[] buffer, int offset, int size) in Write()
396 int IMonoBtlsBioMono.Read (byte[] buffer, int offset, int size, out bool wantMore) in IMonoBtlsBioMono.Read() argument
399 var ret = Parent.InternalRead (buffer, offset, size, out wantMore); in IMonoBtlsBioMono.Read()
400 Debug ("InternalReadDone: {0} {1}", ret, wantMore); in IMonoBtlsBioMono.Read()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Mono.Net.Security/
H A DAsyncProtocolRequest.cs320 var (ret, wantMore) = Parent.ProcessRead (UserBuffer); in Run()
322 Debug ("ProcessRead - read user done: {0} - {1} {2}", this, ret, wantMore); in Run()
333 Debug ("Process Read - read user done #1: {0} - {1} {2}", this, CurrentSize, wantMore); in Run()
335 if (wantMore && CurrentSize == 0) in Run()
359 var (ret, wantMore) = Parent.ProcessWrite (UserBuffer); in Run()
361 Debug ("ProcessWrite - write user done: {0} - {1} {2}", this, ret, wantMore); in Run()
372 if (wantMore) in Run()
H A DMobileTlsContext.cs168 public abstract (int ret, bool wantMore) Read (byte[] buffer, int offset, int count); in Read()
170 public abstract (int ret, bool wantMore) Write (byte[] buffer, int offset, int count); in Write()
H A DMobileAuthenticatedStream.cs406 var (ret, wantMore) = InternalRead (asyncRequest, readBuffer, buffer, offset, size); in InternalRead()
407 outWantMore = wantMore; in InternalRead()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Mono.AppleTls/
H A DAppleTlsContext.cs733 bool wantMore; in NativeReadCallback()
734 var ret = Parent.InternalRead (readBuffer, 0, len, out wantMore); in NativeReadCallback()
737 Debug ("NativeReadCallback #1: {0} - {1} {2}", len, ret, wantMore); in NativeReadCallback()
746 else if (wantMore) in NativeReadCallback()
778 public override unsafe (int ret, bool wantMore) Read (byte[] buffer, int offset, int count) in Read()
806 var wantMore = status == SslStatus.WouldBlock; in Read()
807 return ((int)processed, wantMore); in Read()
819 public override unsafe (int ret, bool wantMore) Write (byte[] buffer, int offset, int count) in Write()
839 var wantMore = status == SslStatus.WouldBlock; in Write()
840 return ((int)processed, wantMore); in Write()
/dports/lang/mono/mono-5.10.1.57/mono/btls/
H A Dbtls-bio.c35 int ret, wantMore; in mono_read() local
40 ret = mono->read_func (mono->instance, out, outl, &wantMore); in mono_read()
49 if (wantMore) { in mono_read()
H A Dbtls-bio.h19 typedef int (* MonoBtlsReadFunc) (const void *instance, const void *buf, int size, int *wantMore);
/dports/graphics/bmeps/dktools-4.31.1/src/libdk3wx/
H A DDkWxProcessingIdleController.cpt52 bool wantMore(void);
95 DkWxProcessingIdleController::wantMore(void)
H A DDkWxProcessingIdleController.h65 bool wantMore(void);
H A DDkWxProcessingIdleController.cpp54 DkWxProcessingIdleController::wantMore(void) in wantMore() function in DkWxProcessingIdleController
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/query/
H A Dquery_request.h241 bool wantMore() const { in wantMore() function
245 void setWantMore(bool wantMore) { in setWantMore() argument
246 _wantMore = wantMore; in setWantMore()
H A Dfind.cpp88 if (!qr.wantMore()) { in shouldSaveCursor()
675 LOG(5) << "Enough for first batch, wantMore=" << qr.wantMore() in runQuery()
H A Dplanner_analysis.cpp604 if (qr.wantMore() && params.options & QueryPlannerParams::SPLIT_LIMITED_SORT && in analyzeSort()
867 } else if (qr.getNToReturn() && !qr.wantMore()) { in analyzeDataAccess()
H A Dquery_request_test.cpp512 ASSERT(qr->wantMore()); in TEST()
1042 ASSERT_EQUALS(true, qr->wantMore()); in TEST()
1390 ASSERT_EQ(qr->wantMore(), true); in TEST()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/s/query/
H A Dcluster_find.cpp102 if (!qr.wantMore()) { in transformQueryForShards()
314 if (!query.getQueryRequest().wantMore() && !ccc->isTailable()) { in runQueryWithoutRetrying()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/shell/
H A Dbench.cpp206 invariant(qr->getLimit() && *qr->getLimit() == 1 && !qr->wantMore()); in runQueryWithReadCommands()