Home
last modified time | relevance | path

Searched refs:options_buffer (Results 1 – 11 of 11) sorted by relevance

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/mojo/public/java/system/
H A Dcore_impl.cc30 const JavaParamRef<jobject>& options_buffer) { in JNI_CoreImpl_CreateMessagePipe() argument
32 if (options_buffer) { in JNI_CoreImpl_CreateMessagePipe()
33 const void* buffer_start = env->GetDirectBufferAddress(options_buffer); in JNI_CoreImpl_CreateMessagePipe()
36 const size_t buffer_size = env->GetDirectBufferCapacity(options_buffer); in JNI_CoreImpl_CreateMessagePipe()
50 const JavaParamRef<jobject>& options_buffer) { in JNI_CoreImpl_CreateDataPipe() argument
52 if (options_buffer) { in JNI_CoreImpl_CreateDataPipe()
53 const void* buffer_start = env->GetDirectBufferAddress(options_buffer); in JNI_CoreImpl_CreateDataPipe()
70 const JavaParamRef<jobject>& options_buffer, in JNI_CoreImpl_CreateSharedBuffer() argument
73 if (options_buffer) { in JNI_CoreImpl_CreateSharedBuffer()
283 const JavaParamRef<jobject>& options_buffer) { in JNI_CoreImpl_Duplicate() argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/mojo/public/java/system/
H A Dcore_impl.cc31 const JavaParamRef<jobject>& options_buffer) { in JNI_CoreImpl_CreateMessagePipe() argument
33 if (options_buffer) { in JNI_CoreImpl_CreateMessagePipe()
34 const void* buffer_start = env->GetDirectBufferAddress(options_buffer); in JNI_CoreImpl_CreateMessagePipe()
37 const size_t buffer_size = env->GetDirectBufferCapacity(options_buffer); in JNI_CoreImpl_CreateMessagePipe()
51 const JavaParamRef<jobject>& options_buffer) { in JNI_CoreImpl_CreateDataPipe() argument
53 if (options_buffer) { in JNI_CoreImpl_CreateDataPipe()
54 const void* buffer_start = env->GetDirectBufferAddress(options_buffer); in JNI_CoreImpl_CreateDataPipe()
71 const JavaParamRef<jobject>& options_buffer, in JNI_CoreImpl_CreateSharedBuffer() argument
74 if (options_buffer) { in JNI_CoreImpl_CreateSharedBuffer()
284 const JavaParamRef<jobject>& options_buffer) { in JNI_CoreImpl_Duplicate() argument
[all …]
/dports/www/node10/node-v10.24.1/src/
H A Dnode_http2_state.h120 options_buffer( in Http2State()
122 offsetof(http2_state_internal, options_buffer), in Http2State()
138 AliasedBuffer<uint32_t, v8::Uint32Array> options_buffer; variable
149 uint32_t options_buffer[IDX_OPTIONS_FLAGS + 1]; member
H A Dnode_http2.cc126 env->http2_state()->options_buffer; in Http2Options()
3111 "optionsBuffer", state->options_buffer.GetJSArray()); in Initialize()
/dports/databases/p5-Memcached-libmemcached/Memcached-libmemcached-1.001801/src/libmemcached/tests/libmemcached-1.0/
H A Dpool.cc330 char options_buffer[1024]= { 0 }; in create_single_instance_memcached() local
335 snprintf(options_buffer, sizeof(options_buffer), "--BINARY"); in create_single_instance_memcached()
H A Dmem_functions.cc102 char options_buffer[1024]= { 0 }; in create_single_instance_memcached() local
107 snprintf(options_buffer, sizeof(options_buffer), "--BINARY"); in create_single_instance_memcached()
/dports/databases/libmemcached/libmemcached-1.0.18/tests/libmemcached-1.0/
H A Dpool.cc330 char options_buffer[1024]= { 0 }; in create_single_instance_memcached() local
335 snprintf(options_buffer, sizeof(options_buffer), "--BINARY"); in create_single_instance_memcached()
H A Dmem_functions.cc102 char options_buffer[1024]= { 0 }; in create_single_instance_memcached() local
107 snprintf(options_buffer, sizeof(options_buffer), "--BINARY"); in create_single_instance_memcached()
/dports/games/sdlpop/SDLPoP-1.22/src/
H A Dreplay.c477 size_t save_options_to_buffer(void* options_buffer, size_t max_size, process_options_section_func_t… in save_options_to_buffer() argument
478 SDL_RWops* rw = SDL_RWFromMem(options_buffer, max_size); in save_options_to_buffer()
487 void load_options_from_buffer(void* options_buffer, size_t options_size, process_options_section_fu… in load_options_from_buffer() argument
488 SDL_RWops* rw = SDL_RWFromMem(options_buffer, options_size); in load_options_from_buffer()
/dports/biology/py-biopython/biopython-1.79/Bio/Nexus/
H A DNexus.py1323 def _parse_list(self, options_buffer, set_type): argument
1330 if options_buffer.peek_nonwhitespace():
1335 identifier = options_buffer.next_word() # next list element
1339 if options_buffer.peek_nonwhitespace() == "-": # followd by -
1343 hyphen = options_buffer.next_nonwhitespace()
1345 options_buffer.next_word(), set_type=set_type
1349 options_buffer.peek_nonwhitespace() == "\\"
1351 backslash = options_buffer.next_nonwhitespace()
1353 options_buffer.next_word()
/dports/www/trafficserver/trafficserver-9.1.1/mgmt/
H A DLocalManager.cc854 char options_buffer[OPTIONS_SIZE]; in startProxy() local
855 ts::FixedBufferWriter w{options_buffer, OPTIONS_SIZE}; in startProxy()
902 tok = strtok_r(options_buffer, " ", &last); in startProxy()