Searched refs:method_names (Results 1 - 5 of 5) sorted by relevance
/third_party/libwebsockets/lib/roles/http/server/ |
H A D | access-log.c | 37 extern const char * const method_names[]; 85 me = method_names[meth]; in lws_prepare_access_log_info()
|
H A D | server.c | 31 const char * const method_names[] = { variable 97 (void)method_names; in _lws_vhost_init_server_af() 1615 if (meth < 0 || meth >= (int)LWS_ARRAY_SIZE(method_names)) in lws_http_action() 1619 lws_metrics_tag_wsi_add(wsi, "meth", method_names[meth]); in lws_http_action() 1629 lwsl_info("Method: '%s' (%d), request for '%s'\n", method_names[meth], in lws_http_action()
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
H A D | mod.rs | 2291 let mut method_names = Default::default(); in codegen() variables 2298 &mut method_names, in codegen() 2316 &mut method_names, in codegen() 2329 &mut method_names, in codegen() 2440 method_names: &mut HashSet<String>, in codegen_method() 2507 if method_names.contains(&name) { in codegen_method() 2513 method_names.contains(&new_name) in codegen_method() 2521 method_names.insert(name.clone()); in codegen_method()
|
/third_party/libwebsockets/lib/roles/h2/ |
H A D | http2.c | 1410 static const char * const method_names[] = { 1798 for (n = 0; n < (int)LWS_ARRAY_SIZE(method_names); n++) 1799 if (p && !strcasecmp(p, method_names[n])) {
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-objects.cc | 2055 Handle<String> method_names[2]; in OrdinaryToPrimitive() local 2058 method_names[0] = isolate->factory()->valueOf_string(); in OrdinaryToPrimitive() 2059 method_names[1] = isolate->factory()->toString_string(); in OrdinaryToPrimitive() 2062 method_names[0] = isolate->factory()->toString_string(); in OrdinaryToPrimitive() 2063 method_names[1] = isolate->factory()->valueOf_string(); in OrdinaryToPrimitive() 2066 for (Handle<String> name : method_names) { in OrdinaryToPrimitive()
|
Completed in 20 milliseconds