/third_party/libwebsockets/scripts/ |
D | attack.sh | 17 PORT=7681 147 …ttp_post=%3F HTTP/1.0\x0d\x0a\x0d\x0a" | $LWS_NC --server $SERVER --port $PORT 2>/dev/null | sed '… 157 …?key1=value1 HTTP/1.0\x0d\x0a\x0d\x0a" | $LWS_NC --server $SERVER --port $PORT 2>/dev/null | sed '… 164 …1%3d2=value1 HTTP/1.0\x0d\x0a\x0d\x0a" | $LWS_NC --server $SERVER --port $PORT 2>/dev/null | sed '… 172 …t.html?arg=1 HTTP/1.0\x0d\x0a\x0d\x0a" | $LWS_NC --server $SERVER --port $PORT 2>/dev/null | sed '… 179 …ml?arg=/../. HTTP/1.0\x0d\x0a\x0d\x0a" | $LWS_NC --server $SERVER --port $PORT 2>/dev/null | sed '… 185 echo "not GET" | $LWS_NC --server $SERVER --port $PORT 2>/dev/null > /tmp/lwscap 190 dd if=/dev/urandom bs=1 count=80 2>/dev/null | $LWS_NC --server $SERVER --port $PORT 2>/dev/null > … 195 dd if=/dev/urandom bs=1 count=655360 | $LWS_NC --server $SERVER --port $PORT 2>/dev/null > /tmp/lws… 201 | $LWS_NC --server $SERVER --port $PORT 2>/dev/null > /tmp/lwscap [all …]
|
/third_party/node/test/sequential/ |
D | test-net-server-bind.js | 21 server.listen(common.PORT); 25 assert.strictEqual(address.port, common.PORT); 40 server.listen(common.PORT + 1, common.mustCall(function() { 41 assert.strictEqual(server.address().port, common.PORT + 1); 50 server.listen(common.PORT + 2, '0.0.0.0', 127, common.mustCall(function() { 51 assert.strictEqual(server.address().port, common.PORT + 2); 60 server.listen(common.PORT + 3, 127, common.mustCall(function() { 61 assert.strictEqual(server.address().port, common.PORT + 3);
|
D | test-net-server-address.js | 35 .listen(common.PORT + 1, common.localhostIPv4, common.mustCall(() => { 38 assert.strictEqual(address4.port, common.PORT + 1); 60 server.listen(common.PORT + 2, localhost, common.mustCall(() => { 63 assert.strictEqual(address.port, common.PORT + 2); 76 server.listen(common.PORT + 3, common.mustCall(() => { 79 assert.strictEqual(address.port, common.PORT + 3);
|
D | test-net-connect-local-error.js | 11 port: common.PORT, 12 localPort: common.PORT + 1, 18 port: common.PORT + 2, 19 localPort: common.PORT + 3,
|
/third_party/node/benchmark/http/ |
D | cluster.js | 3 const PORT = common.PORT; constant 16 const port = parseInt(process.env.PORT || PORT); 21 process.env.PORT = PORT;
|
D | set-header.js | 3 const PORT = common.PORT; constant 20 process.env.PORT = PORT; 22 .listen(PORT)
|
/third_party/node/test/parallel/ |
D | test-dgram-connect.js | 7 const PORT = 12345; constant 10 client.connect(PORT, common.mustCall(() => { 12 assert.strictEqual(remoteAddr.port, PORT); 14 client.connect(PORT, common.mustNotCall()); 39 client.connect(PORT); 43 client.connect(PORT);
|
D | test-dgram-exclusive-implicit-bind.js | 73 cluster.fork({ PORT: target.address().port }); property 74 cluster.fork({ PORT: target.address().port }); property 76 cluster.fork({ BOUND: 'y', PORT: target.address().port }); property 77 cluster.fork({ BOUND: 'y', PORT: target.address().port }); property 101 assert(process.env.PORT); 104 source.send(buf, process.env.PORT, '127.0.0.1');
|
/third_party/rust/crates/clap/examples/tutorial_derive/ |
D | 04_02_parse.md | 5 Usage: 04_02_parse_derive[EXE] <PORT> 8 <PORT> Network port to use 15 PORT = 22 19 error: invalid value 'foobar' for '<PORT>': invalid digit found in string 25 error: invalid value '0' for '<PORT>': 0 is not in 1..=65535
|
D | 04_02_validate.md | 5 Usage: 04_02_validate_derive[EXE] <PORT> 8 <PORT> Network port to use 15 PORT = 22 19 error: invalid value 'foobar' for '<PORT>': `foobar` isn't a port number 25 error: invalid value '0' for '<PORT>': port not in range 1-65535
|
/third_party/flatbuffers/grpc/examples/ts/greeter/src/ |
D | client.ts | 7 async function main(PORT: Number, name: String) { 8 const _server = new GreeterClient(`localhost:${PORT}`, grpc.credentials.createInsecure()); 27 const PORT = Number(args[0]); constant 30 if (PORT) { 31 main(PORT, name);
|
/third_party/rust/crates/clap/examples/tutorial_builder/ |
D | 04_02_parse.md | 5 Usage: 04_02_parse[EXE] <PORT> 8 <PORT> Network port to use 15 PORT = 22 19 error: invalid value 'foobar' for '<PORT>': invalid digit found in string 25 error: invalid value '0' for '<PORT>': 0 is not in 1..=65535
|
D | 04_02_validate.md | 5 Usage: 04_02_validate[EXE] <PORT> 8 <PORT> Network port to use 15 PORT = 22 19 error: invalid value 'foobar' for '<PORT>': `foobar` isn't a port number 25 error: invalid value '0' for '<PORT>': port not in range 1-65535
|
/third_party/node/benchmark/dgram/ |
D | array-vs-concat.js | 6 const PORT = common.PORT; constant 36 socket.send(Buffer.concat(chunk), PORT, '127.0.0.1', onsend); 48 socket.send(chunk, PORT, '127.0.0.1', onsend); 66 socket.bind(PORT);
|
D | single-buffer.js | 6 const PORT = common.PORT; constant 30 socket.send(chunk, PORT, '127.0.0.1', onsend); 52 socket.bind(PORT);
|
D | offset-length.js | 6 const PORT = common.PORT; constant 30 socket.send(chunk, 0, chunk.length, PORT, '127.0.0.1', onsend); 52 socket.bind(PORT);
|
D | multi-buffer.js | 6 const PORT = common.PORT; constant 34 socket.send(chunk, PORT, '127.0.0.1', onsend); 56 socket.bind(PORT);
|
/third_party/skia/platform_tools/android/bin/ |
D | android_gdb_app | 11 PORT=5039 17 $ADB $DEVICE_SERIAL forward "tcp:$PORT" "tcp:$PORT" 46 $ADB $DEVICE_SERIAL shell /data/local/tmp/gdbserver :$PORT --attach $PID & 53 echo "target remote :$PORT" >> $GDBSETUP
|
/third_party/ltp/testcases/network/multicast/mc_commo/ |
D | mc_commo.sh | 43 PORT=$(tst_get_unused_port ipv4 dgram) 51 tst_resm TINFO "Start mc_recv $GROUP_ADDR $(tst_ipaddr) $PORT" 52 mc_recv $GROUP_ADDR $(tst_ipaddr) $PORT >> $OUTFILE & 65 "$(tst_ipaddr rhost) $PORT $TTL" 67 tst_rhost_run -b -c "mc_send $GROUP_ADDR $(tst_ipaddr rhost) $PORT $TTL"
|
/third_party/flutter/skia/platform_tools/android/bin/ |
D | android_gdb_app | 11 PORT=5039 17 $ADB $DEVICE_SERIAL forward "tcp:$PORT" "tcp:$PORT" 46 $ADB $DEVICE_SERIAL shell /data/local/tmp/gdbserver :$PORT --attach $PID & 53 echo "target remote :$PORT" >> $GDBSETUP
|
/third_party/protobuf/php/tests/ |
D | multirequest.sh | 7 PORT=12345 11 …st=1 -dextension=../ext/google/protobuf/modules/protobuf.so -S localhost:$PORT multirequest.php 2>… 15 wget http://localhost:$PORT/multirequest.result -O multirequest.result 16 wget http://localhost:$PORT/multirequest.result -O multirequest.result
|
/third_party/node/benchmark/net/ |
D | net-s2c.js | 5 const PORT = common.PORT; constant 47 socketOpts = { port: PORT }; 63 port: PORT, 78 server.listen(PORT, () => {
|
D | net-c2s-cork.js | 6 const PORT = common.PORT; constant 41 server.listen(PORT, () => { 42 const socket = net.connect(PORT);
|
D | net-c2s.js | 6 const PORT = common.PORT; constant 44 server.listen(PORT, () => { 45 const socket = net.connect(PORT);
|
D | net-pipe.js | 6 const PORT = common.PORT; constant 44 server.listen(PORT, () => { 45 const socket = net.connect(PORT);
|