/third_party/gstreamer/gstplugins_bad/ext/lv2/ |
D | swh-lv2-port-groups.patch | 1 diff -ur swh-lv2-1.0.15/plugins/dj_eq-swh.lv2/plugin.xml swh-lv2-port-groups/plugins/dj_eq-swh.lv2/… 3 +++ swh-lv2-port-groups/plugins/dj_eq-swh.lv2/plugin.xml 2009-07-03 16:55:25.000000000 -0400 11 <port label="lo" dir="input" type="control" hint="default_0"> 16 </port> 18 - <port label="left_input" dir="input" type="audio"> 19 + <port label="left_input" dir="input" type="audio" group="main_in" role="leftChannel"> 21 </port> 22 - <port label="right_input" dir="input" type="audio"> 23 + <port label="right_input" dir="input" type="audio" group="main_in" role="rightChannel"> 25 </port> [all …]
|
/third_party/selinux/libsepol/src/ |
D | port_record.c | 37 ERR(handle, "out of memory, could not create " "port key"); in sepol_port_key_create() 61 const sepol_port_t * port, in sepol_port_key_extract() argument 66 (handle, port->low, port->high, port->proto, key_ptr) < 0) { in sepol_port_key_extract() 68 ERR(handle, "could not extract key from port %s %d:%d", in sepol_port_key_extract() 69 sepol_port_get_proto_str(port->proto), in sepol_port_key_extract() 70 port->low, port->high); in sepol_port_key_extract() 83 int sepol_port_compare(const sepol_port_t * port, const sepol_port_key_t * key) in sepol_port_compare() argument 86 if ((port->low == key->low) && in sepol_port_compare() 87 (port->high == key->high) && (port->proto == key->proto)) in sepol_port_compare() 90 if (port->low < key->low) in sepol_port_compare() [all …]
|
D | ports.c | 53 /* Create a low level port structure from 57 ocontext_t ** port, const sepol_port_t * data) in port_from_record() argument 76 tmp_port->u.port.protocol = tmp_proto; in port_from_record() 78 /* Port range */ in port_from_record() 79 tmp_port->u.port.low_port = low; in port_from_record() 80 tmp_port->u.port.high_port = high; in port_from_record() 81 if (tmp_port->u.port.low_port > tmp_port->u.port.high_port) { in port_from_record() 82 ERR(handle, "low port %d exceeds high port %d", in port_from_record() 83 tmp_port->u.port.low_port, tmp_port->u.port.high_port); in port_from_record() 96 *port = tmp_port; in port_from_record() [all …]
|
D | ibendport_record.c | 16 /* Port number */ 17 int port; member 27 /* Port number */ 28 int port; member 51 int port, in sepol_ibendport_key_create() argument 66 tmp_key->port = port; in sepol_ibendport_key_create() 76 ERR(handle, "could not create ibendport key for IB device %s, port %u", in sepol_ibendport_key_create() 77 ibdev_name, port); in sepol_ibendport_key_create() 83 const char **ibdev_name, int *port) in sepol_ibendport_key_unpack() argument 86 *port = key->port; in sepol_ibendport_key_unpack() [all …]
|
/third_party/node/test/sequential/ |
D | test-runner-run-inspect.mjs | 36 let port = debuggerPort + offset++ * 5; variable 39 execArgv: [`--inspect=${port}`], 40 expectedPort: port + 1, 43 port = debuggerPort + offset++ * 5; 46 execArgv: ['--inspect', `--inspect-port=${port}`], 47 expectedPort: port + 1, 50 port = debuggerPort + offset++ * 5; 53 execArgv: ['--inspect', `--debug-port=${port}`], 54 expectedPort: port + 1, 57 port = debuggerPort + offset++ * 5; [all …]
|
D | test-inspector-port-cluster.js | 12 const debuggerPort = common.PORT; 17 // This test suite checks that inspector port in cluster is incremented 36 let port = debuggerPort + offset++ * 5; 39 execArgv: [`--inspect=${port}`], 41 { expectedPort: port + 1 }, 42 { expectedPort: port + 2 }, 43 { expectedPort: port + 3 }, 47 port = debuggerPort + offset++ * 5; 50 execArgv: ['--inspect', `--inspect-port=${port}`], 51 workers: [{ expectedPort: port + 1 }] [all …]
|
D | test-net-server-bind.js | 7 // With only a callback, server should get a port assigned by the OS 12 assert.ok(server.address().port > 100); 21 server.listen(common.PORT); 25 assert.strictEqual(address.port, common.PORT); 28 assert.strictEqual(server._connectionKey, `6::::${address.port}`); 30 assert.strictEqual(server._connectionKey, `4:0.0.0.0:${address.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); [all …]
|
/third_party/node/test/parallel/ |
D | test-tls-passphrase.js | 56 port: this.address().port, property 64 port: this.address().port, property 71 port: this.address().port, property 80 port: this.address().port, property 88 port: this.address().port, property 95 port: this.address().port, property 104 port: this.address().port, property 112 port: this.address().port, property 119 port: this.address().port, property 128 port: this.address().port, property [all …]
|
D | test-net-connect-options-port.js | 63 const hintOptBlocks = doConnect([{ port: 42, hints }], property 74 // Test valid combinations of connect(port) and connect(port, host) 87 const port = server.address().port; constant 90 canConnect(port); 91 canConnect(String(port)); 92 canConnect(`0x${port.toString(16)}`); 135 function syncFailToConnect(port, assertErr, optOnly) { argument 138 // connect(port, cb) and connect(port) 139 const portArgFunctions = doConnect([{ port, family }], property 142 assert.throws(fn, assertErr, `${fn.name}(${port})`); [all …]
|
D | test-https-agent-create-connection.js | 48 const port = server.address().port; constant 51 port: port, property 54 _agentKey: agent.getName({ port, host }) property 62 // Use port and option connect 66 const port = server.address().port; constant 70 _agentKey: agent.getName({ port, host }) property 72 const socket = agent.createConnection(port, options); 77 // Use port and host and option connect 81 const port = server.address().port; constant 85 _agentKey: agent.getName({ port, host }) property [all …]
|
D | test-http-agent-scheduling.js | 9 // Return the remote port number used for this connection. 37 function callback(port) { argument 39 ports.push(port); 51 const url = `http://localhost:${server.address().port}`; 58 makeRequest(url, agent, (port) => { 59 assert.strictEqual(ports[ports.length - 1], port); 60 makeRequest(url, agent, (port) => { 61 assert.strictEqual(ports[ports.length - 1], port); 62 makeRequest(url, agent, (port) => { 63 assert.strictEqual(ports[ports.length - 1], port); [all …]
|
D | test-https-host-headers.js | 23 req.headers.host, `localhost:${this.address().port}`, 29 debug(`test https server listening on port ${this.address().port}`); 35 port: this.address().port, property 43 port: this.address().port, property 51 port: this.address().port, property 59 port: this.address().port, property 67 port: this.address().port, property 76 port: this.address().port, property 86 port: this.address().port, property 95 port: this.address().port, property [all …]
|
D | test-http2-create-client-connect.js | 18 const port = this.address().port; 21 [`http://localhost:${port}`], 22 [new URL(`http://localhost:${port}`)], 23 [url.parse(`http://localhost:${port}`)], 24 [{ port }, { protocol: 'http:' }], field 25 [{ port, hostname: '127.0.0.1' }, { protocol: 'http:' }], property 44 const client = h2.connect({ port: port, protocol: 'https:' }) property 60 const port = server.address().port; constant 65 [`https://localhost:${port}`, opts], 66 [new URL(`https://localhost:${port}`), opts], [all …]
|
/third_party/pulseaudio/src/modules/ |
D | module-switch-on-port-available.c | 27 #include <pulsecore/device-port.h> 65 static bool profile_good_for_output(pa_card_profile *profile, pa_device_port *port) { in profile_good_for_output() argument 86 if (port == card->preferred_output_port) in profile_good_for_output() 93 …ink->active_port->available != PA_AVAILABLE_NO) && (sink->active_port->priority >= port->priority)) in profile_good_for_output() 100 static bool profile_good_for_input(pa_card_profile *profile, pa_device_port *port) { in profile_good_for_input() argument 121 if (port == card->preferred_input_port) in profile_good_for_input() 128 …e->active_port->available != PA_AVAILABLE_NO) && (source->active_port->priority >= port->priority)) in profile_good_for_input() 135 static int try_to_switch_profile(pa_device_port *port) { in try_to_switch_profile() argument 140 if (port->card->profile_is_sticky) { in try_to_switch_profile() 141 pa_log_info("Keeping sticky card profile '%s'", port->card->active_profile->name); in try_to_switch_profile() [all …]
|
/third_party/curl/docs/libcurl/opts/ |
D | CURLOPT_CONNECT_TO.3 | 28 CURLOPT_CONNECT_TO \- connect to a specific host and port instead of the URL's host and port 44 HOST:PORT:CONNECT-TO-HOST:CONNECT-TO-PORT where HOST is the host of the 45 request, PORT is the port of the request, CONNECT-TO-HOST is the host name to 46 connect to, and CONNECT-TO-PORT is the port to connect to. 48 The first string that matches the request's host and port is used. 53 Any of the four values may be empty. When the HOST or PORT is empty, the host 54 or port always match (the request's host or port is ignored). When 55 CONNECT-TO-HOST or CONNECT-TO-PORT is empty, the "connect to" feature is 56 disabled for the host or port, and the request's host or port are used to 62 The "connect to" host and port are only used to establish the network [all …]
|
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
D | vid_enc.c | 67 static OMX_ERRORTYPE vid_enc_AllocateInBuffer(omx_base_PortType *port, OMX_INOUT OMX_BUFFERHEADERTY… 69 static OMX_ERRORTYPE vid_enc_UseInBuffer(omx_base_PortType *port, OMX_BUFFERHEADERTYPE **buf, OMX_U… 71 static OMX_ERRORTYPE vid_enc_FreeInBuffer(omx_base_PortType *port, OMX_U32 idx, OMX_BUFFERHEADERTYP… 72 static OMX_ERRORTYPE vid_enc_EncodeFrame(omx_base_PortType *port, OMX_BUFFERHEADERTYPE *buf); 75 static OMX_ERRORTYPE vid_enc_FreeOutBuffer(omx_base_PortType *port, OMX_U32 idx, OMX_BUFFERHEADERTY… 129 omx_base_video_PortType *port; in vid_enc_Constructor() local 198 port = (omx_base_video_PortType *)priv->ports[OMX_BASE_FILTER_INPUTPORT_INDEX]; in vid_enc_Constructor() 199 port->sPortParam.format.video.nFrameWidth = 176; in vid_enc_Constructor() 200 port->sPortParam.format.video.nFrameHeight = 144; in vid_enc_Constructor() 201 port->sPortParam.format.video.eColorFormat = OMX_COLOR_FormatYUV420SemiPlanar; in vid_enc_Constructor() [all …]
|
/third_party/node/lib/internal/webstreams/ |
D | transfer.js | 107 constructor(port) { argument 109 port, 113 port.onmessage = ({ data }) => { function 129 port.close(); 133 port.close(); 138 port.onmessageerror = () => { 142 port.postMessage({ type: 'error', value: error }); 146 port.close(); 155 this[kState].port.postMessage({ type: 'pull' }); 160 this[kState].port.postMessage({ type: 'error', value: reason }); [all …]
|
/third_party/alsa-lib/src/seq/ |
D | seqmid.c | 62 * \brief create a port - simple version 64 * \param name the name of the port 67 * \return the created port number or negative error code 69 * Creates a port with the given capability and type bits. 92 return pinfo.addr.port; in snd_seq_create_simple_port() 96 * \brief delete the port 98 * \param port port id 103 int snd_seq_delete_simple_port(snd_seq_t *seq, int port) in snd_seq_delete_simple_port() argument 105 return snd_seq_delete_port(seq, port); in snd_seq_delete_simple_port() 111 * \param myport the port id as receiver [all …]
|
/third_party/node/test/fixtures/wpt/url/resources/ |
D | urltestdata.json | 13 "port": "", string 28 "port": "21", string 43 "port": "", string 58 "port": "", string 73 "port": "", string 88 "port": "", string 103 "port": "", string 118 "port": "", string 133 "port": "", string 148 "port": "", string [all …]
|
/third_party/node/deps/npm/node_modules/socks/docs/examples/javascript/ |
D | bindExample.md | 5 …y server to bind and listen on a new TCP port for an incoming connection. It communicates the newl… 11 1. Client -(bind)-> Proxy (Tells the proxy to bind to a new port) 12 2. Client <-(port)- Proxy (Tells the origin client which port it opened) 13 3. Client2 --> Proxy (Other client connects to the proxy on this port) 30 port: 1081, 34 …// This should be the ip and port of the expected client that will connect to the SOCKS proxy serv… 38 port: 0 46 // This event is fired when the SOCKS server has started listening on a new port for incoming conne… 52 …remoteHost: { // This is the remote ip and port of the SOCKS proxy that is now accepting incoming … 54 port: 49928 [all …]
|
D | associateExample.md | 5 …ew UDP port and communicates the newly opened port back to the origin client. From here, any SOCKS… 11 1. Client -(associate)-> Proxy (Tells the proxy to create a UDP relay and bind on a new port) 12 2. Client <-(port)- Proxy (Tells the origin client which port it opened and is accepting UDP frame … 14 At this point the proxy is accepting UDP frames on the specified port. 16 … Destination (The origin client sends a UDP frame to the proxy on the UDP port, and the proxy then… 38 remoteHost: { host: '8.8.8.8', port: 53 }, // The remote host that replied with a UDP packet 47 port: 1081, 51 …// This should be the ip and port of the expected client that will be sending UDP frames to the ne… 55 port: 0 63 // This event is fired when the SOCKS server has started listening on a new UDP port for UDP relayi… [all …]
|
/third_party/node/deps/npm/node_modules/socks/docs/examples/typescript/ |
D | bindExample.md | 5 …y server to bind and listen on a new TCP port for an incoming connection. It communicates the newl… 11 1. Client -(bind)-> Proxy (Tells the proxy to bind to a new port) 12 2. Client <-(port)- Proxy (Tells the origin client which port it opened) 13 3. Client2 --> Proxy (Other client connects to the proxy on this port) 30 port: 1081, 34 …// This should be the ip and port of the expected client that will connect to the SOCKS proxy serv… 38 port: 0 46 // This event is fired when the SOCKS server has started listening on a new port for incoming conne… 52 …remoteHost: { // This is the remote ip and port of the SOCKS proxy that is now accepting incoming … 54 port: 49928 [all …]
|
D | associateExample.md | 5 …ew UDP port and communicates the newly opened port back to the origin client. From here, any SOCKS… 11 1. Client -(associate)-> Proxy (Tells the proxy to create a UDP relay and bind on a new port) 12 2. Client <-(port)- Proxy (Tells the origin client which port it opened and is accepting UDP frame … 14 At this point the proxy is accepting UDP frames on the specified port. 16 … Destination (The origin client sends a UDP frame to the proxy on the UDP port, and the proxy then… 38 remoteHost: { host: '8.8.8.8', port: 53 }, // The remote host that replied with a UDP packet 47 port: 1081, 51 …// This should be the ip and port of the expected client that will be sending UDP frames to the ne… 55 port: 0 63 // This event is fired when the SOCKS server has started listening on a new UDP port for UDP relayi… [all …]
|
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-multi/ |
D | CMakeLists.txt | 53 …_srv COMMAND cmd.exe /c start /b $<TARGET_FILE:lws-minimal-http-server-tls> --port ${PORT_HCM_SRV}) 55 …add_test(NAME st_hcmp_srv COMMAND cmd.exe /c start /b $<TARGET_FILE:test-server> -s --port 1${PORT… 65 --port ${PORT_HCM_SRV}) 69 --port ${PORT_HCM_SRV}) 74 --port 1${PORT_HCM_SRV}) 78 --port 1${PORT_HCM_SRV}) 83 --port ${PORT_HCM_SRV} ) 87 --port ${PORT_HCM_SRV}) 92 --port 1${PORT_HCM_SRV} ) 96 --port 1${PORT_HCM_SRV}) [all …]
|
/third_party/node/lib/ |
D | dgram.js | 238 let port = port_; 264 if (port !== null && 265 typeof port === 'object' && 266 typeof port.recvStart === 'function') { 267 replaceHandle(this, port); 273 if (port !== null && typeof port === 'object' && 274 isInt32(port.fd) && port.fd > 0) { 275 const fd = port.fd; 276 const exclusive = !!port.exclusive; 284 port: null, property [all …]
|