Home
last modified time | relevance | path

Searched refs:urlpath (Results 1 – 20 of 20) sorted by relevance

/third_party/libwebsockets/lib/secure-streams/cpp/
Dlss.cxx53 const char *p, *urlpath; in lss() local
100 if (lws_parse_uri(uri, &p, &pol.endpoint, &n, &urlpath)) in lss()
106 pol.u.http.url = urlpath; in lss()
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-multi/
Dminimal-http-client-multi.c62 static char urlpath[64], intr; variable
390 i->path = urlpath; in lws_try_client_connection()
638 strcpy(urlpath, "/"); in main()
645 strcpy(urlpath, "/formtest"); in main()
650 strcpy(urlpath, "/testserver/formtest"); in main()
666 lws_strncpy(urlpath, p, sizeof(urlpath)); in main()
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd-bulk/mount-origin/
Dexample.js28 function new_ws(urlpath, protocol) argument
30 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threads-foreign-libuv-smp/mount-origin/
Dexample.js29 function new_ws(urlpath, protocol) argument
31 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-ring/mount-origin/
Dexample.js27 function new_ws(urlpath, protocol) argument
29 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/client-server/minimal-ws-proxy/mount-origin/
Dexample.js29 function new_ws(urlpath, protocol) argument
31 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-raw-proxy/mount-origin/
Dexample.js28 function new_ws(urlpath, protocol) argument
30 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-timer/mount-origin/
Dexample.js28 function new_ws(urlpath, protocol) argument
30 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threads/mount-origin/
Dexample.js29 function new_ws(urlpath, protocol) argument
31 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threads-smp/mount-origin/
Dexample.js29 function new_ws(urlpath, protocol) argument
31 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server/mount-origin/
Dexample.js28 function new_ws(urlpath, protocol) argument
30 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd/mount-origin/
Dexample.js28 function new_ws(urlpath, protocol) argument
30 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threadpool/mount-origin/
Dexample.js29 function new_ws(urlpath, protocol) argument
31 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-broker/mount-origin/
Dexample.js28 function new_ws(urlpath, protocol) argument
30 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd-corner/mount-origin/
Dexample.js28 function new_ws(urlpath, protocol) argument
30 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/test-apps/
Dlws-common.js114 function new_ws(urlpath, protocol) argument
116 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/
Dlws-common.js114 function new_ws(urlpath, protocol) argument
116 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-deaddrop/mount-origin/
Ddeaddrop.js211 function new_ws(urlpath, protocol) argument
213 return new WebSocket(urlpath, protocol);
/third_party/libwebsockets/plugins/deaddrop/assets/
Ddeaddrop.js211 function new_ws(urlpath, protocol) argument
213 return new WebSocket(urlpath, protocol);
/third_party/python/Lib/test/
Dtest_urllib2.py692 urlpath = urllib.request.pathname2url(path)
693 if os.name == "nt" and urlpath.startswith("///"):
694 urlpath = urlpath[2:]
696 return urlpath
771 urlpath = sanepathname2url(os.path.abspath(TESTFN))
774 "file://localhost%s" % urlpath,
775 "file://%s" % urlpath,
776 "file://%s%s" % (socket.gethostbyname('localhost'), urlpath),
783 urls.append("file://%s%s" % (localaddr, urlpath))
811 "file://localhost:80%s" % urlpath,