| /third_party/skia/ |
| D | public.bzl | 210 "src/device/xps/*", # Windows-only. Move to ports? 211 "src/doc/*_XPS.cpp", # Windows-only. Move to ports? 220 "src/ports/**/*", 278 "src/ports/**/*.cpp", 279 "src/ports/**/*.h", 282 "src/ports/*CG*", 283 "src/ports/*WIC*", 284 "src/ports/*android*", 285 "src/ports/*chromium*", 286 "src/ports/*mac*", [all …]
|
| D | BUILD.gn | 489 sources = [ "src/ports/SkFontMgr_empty_factory.cpp" ] 499 public = [ "include/ports/SkFontMgr_android.h" ] 501 "src/ports/SkFontMgr_android.cpp", 502 "src/ports/SkFontMgr_android_parser.cpp", 503 "src/ports/SkFontMgr_android_parser.h", 510 sources = [ "src/ports/SkFontMgr_android_factory.cpp" ] 519 public = [ "src/ports/SkFontMgr_custom.h" ] 520 sources = [ "src/ports/SkFontMgr_custom.cpp" ] 530 "//third_party/skia/src/ports", 531 "//third_party/skia/src/ports/skia_ohos", [all …]
|
| /third_party/node/test/parallel/ |
| D | test-http-agent-scheduling.js | 30 const ports = []; 39 ports.push(port); 41 done(ports); 57 bulkRequest(url, agent, (ports) => { 59 assert.strictEqual(ports[ports.length - 1], port); 61 assert.strictEqual(ports[ports.length - 1], port); 63 assert.strictEqual(ports[ports.length - 1], port); 85 bulkRequest(url, agent, (ports) => { 87 assert.strictEqual(ports[0], port); 89 assert.strictEqual(ports[1], port); [all …]
|
| D | test-inspector-port-zero-cluster.js | 9 // consecutive (i.e. deterministically predictable) debug ports 33 .then(common.mustCall((ports) => { 34 ports.splice(0, 0, process.debugPort); 36 assert.strictEqual(ports.length, 4); 37 assert(ports.every((port) => port > 0)); 38 assert(ports.every((port) => port < 65536)); 39 assert.strictEqual(ports[0] === 65535 ? 1024 : ports[0] + 1, ports[1]); 40 assert.strictEqual(ports[1] === 65535 ? 1024 : ports[1] + 1, ports[2]); 41 assert.strictEqual(ports[2] === 65535 ? 1024 : ports[2] + 1, ports[3]);
|
| D | test-worker-message-event.js | 13 lastEventId: '', source: null, ports: [] property 20 lastEventId: '', source: null, ports: [] property 27 lastEventId: '0', source: null, ports: [] property 34 lastEventId: 'foo', source: null, ports: [] property 41 lastEventId: 'foo', source: dummyPort, ports: [] property 45 ['message', { ports: [dummyPort], source: null }], property 48 lastEventId: '', source: null, ports: [dummyPort] property 53 const { type, data, origin, lastEventId, source, ports } = ev; 55 type, data, origin, lastEventId, source, ports field 74 new MessageEvent('message', { ports: 0 }); property [all …]
|
| /third_party/alsa-utils/seq/aconnect/ |
| D | aconnect.1 | 25 is a utility to connect and disconnect two existing ports on ALSA sequencer 27 The ports with the arbitrary subscription permission, such as created 30 can be connected to any (MIDI) device ports using 39 ports. 59 is to list the present ports 61 The input ports, which may become 63 ports, can be listed with 76 Similarly, to see the output ports, use 93 Connect ports with exclusive mode. 94 Both sender and receiver ports can be no longer connected by any other ports. [all …]
|
| /third_party/skia/modules/canvaskit/ |
| D | BUILD.bazel | 54 "//src/ports:default_global_init", 55 "//src/ports:fontmgr", 56 "//src/ports:malloc", 57 "//src/ports:skdebug", 58 "//src/ports:skia_image_generator", 137 "//src/ports:default_global_init", 138 "//src/ports:fontmgr", 139 "//src/ports:malloc", 140 "//src/ports:skdebug", 141 "//src/ports:skia_image_generator",
|
| /third_party/node/test/fixtures/wpt/streams/transferable/ |
| D | transfer-with-messageport.window.js | 21 ev.ports.length, 23 `Correct number of ports ${title}` 25 for (const [i, port] of ev.ports.entries()) { 28 `ports[${i}] include MessagePort ${title}` 98 …`when transferring [MessagePort, ${stream.constructor.name}, MessagePort] but with ports not being… 177 }, "Transferring a MessagePort with a ReadableStream should set `.ports`"); 181 }, "Transferring a MessagePort with a WritableStream should set `.ports`"); 185 }, "Transferring a MessagePort with a TransformStream should set `.ports`"); 189 }, "Transferring a MessagePort with a ReadableStream should set `.ports`, advanced"); 193 }, "Transferring a MessagePort with a WritableStream should set `.ports`, advanced"); [all …]
|
| /third_party/node/lib/internal/per_context/ |
| D | messageport.js | 7 constructor(data, target, type, ports) { argument 11 this.ports = ports ?? []; 19 exports.emitMessage = function(data, ports, type) { argument 21 this[kCurrentlyReceivingPorts] = ports; 30 const event = new MessageEvent(data, this, type, ports);
|
| /third_party/pulseaudio/src/modules/ |
| D | module-card-restore.c | 80 pa_hashmap *ports; /* Port name -> struct port_info */ member 118 …r->ports = pa_hashmap_new_full(pa_idxset_string_hash_func, pa_idxset_string_compare_func, NULL, (p… in entry_new() 143 pa_hashmap_free(e->ports); in entry_free() 166 PA_HASHMAP_FOREACH(port, card->ports, state) { in entry_from_card() 168 pa_assert_se(pa_hashmap_put(entry->ports, p_info->name, p_info) >= 0); in entry_from_card() 182 pa_hashmap_size(a->ports) != pa_hashmap_size(b->ports)) in entrys_equal() 185 PA_HASHMAP_FOREACH(Ap_info, a->ports, state) { in entrys_equal() 186 if ((Bp_info = pa_hashmap_get(b->ports, Ap_info->name))) { in entrys_equal() 219 pa_tagstruct_putu32(t, pa_hashmap_size(e->ports)); in entry_write() 221 PA_HASHMAP_FOREACH(p_info, e->ports, state) { in entry_write() [all …]
|
| D | module-switch-on-port-available.c | 31 PA_MODULE_DESCRIPTION("Switches ports and profiles when devices are plugged/unplugged"); 221 if (port == pa_hashmap_get(pp.sink->ports, port->name)) in find_port_pointers() 227 if (port == pa_hashmap_get(pp.source->ports, port->name)) in find_port_pointers() 272 PA_HASHMAP_FOREACH(p, port->card->ports, state) { in switch_from_port() 332 * to record sound since there is no source for these 2 ports. This issue in port_available_hook_callback() 339 /* Not part of a group of ports, so likely not a combination port */ in port_available_hook_callback() 345 /* Switch the headphone port, the input ports without source and the in port_available_hook_callback() 346 * input ports their source->active_port is part of a group of ports. in port_available_hook_callback() 419 PA_HASHMAP_FOREACH(port, card->ports, state2) { in handle_all_unavailable() 426 static pa_device_port *new_sink_source(pa_hashmap *ports, const char *name) { in new_sink_source() argument [all …]
|
| /third_party/lwip/src/netif/ |
| D | bridgeif.c | 42 * (one hardware-independent netif for the bridge that uses hardware netifs for its ports). 49 * - only NETIF_FLAG_ETHARP/NETIF_FLAG_ETHERNET netifs are supported as bridge ports 54 * - some configuration options controlling the memory consumption (maximum number of ports 56 …* - e.g. for a bridge MAC address 00-01-02-03-04-05, 2 bridge ports, 1024 FDB entries + 16 stati… 63 * - set up all ports netifs and the bridge netif 75 * - multicast snooping? (and only forward group addresses to interested ports) 76 * - support removing ports 78 * - VLAN handling / trunk ports 115 bridgeif_port_t *ports; member 130 * bits [0..(BRIDGEIF_MAX_PORTS-1)]: hw ports [all …]
|
| /third_party/pulseaudio/src/modules/alsa/ |
| D | module-alsa-card.c | 142 static void add_profiles(struct userdata *u, pa_hashmap *h, pa_hashmap *ports) { in add_profiles() argument 165 … pa_alsa_ucm_add_ports_combination(NULL, &m->ucm_context, true, ports, cp, u->core); in add_profiles() 167 pa_alsa_path_set_add_ports(m->output_path_set, cp, ports, NULL, u->core); in add_profiles() 178 … pa_alsa_ucm_add_ports_combination(NULL, &m->ucm_context, false, ports, cp, u->core); in add_profiles() 180 pa_alsa_path_set_add_ports(m->input_path_set, cp, ports, NULL, u->core); in add_profiles() 330 port = pa_hashmap_get(u->card->ports, jack->name); in calc_port_state() 432 …/* Report available ports before unavailable ones: in case port 1 becomes available when port 2 be… in report_jack_state() 461 * profile contains a mix of available and unavailable ports, we don't know in report_jack_state() 462 * how the ports are distributed between the different sinks. It's possible in report_jack_state() 463 * that some sinks contain only unavailable ports, in which case we should in report_jack_state() [all …]
|
| /third_party/rust/crates/bindgen/.github/workflows/ |
| D | bindgen.yml | 153 … deb [arch=${{matrix.target.debian}}] http://ports.ubuntu.com/ubuntu-ports/ $DISTRIB_CODENAME main 154 …deb [arch=${{matrix.target.debian}}] http://ports.ubuntu.com/ubuntu-ports/ $DISTRIB_CODENAME-updat… 155 …deb [arch=${{matrix.target.debian}}] http://ports.ubuntu.com/ubuntu-ports/ $DISTRIB_CODENAME-backp… 156 …deb [arch=${{matrix.target.debian}}] http://ports.ubuntu.com/ubuntu-ports/ $DISTRIB_CODENAME-secur…
|
| /third_party/node/deps/undici/src/lib/websocket/ |
| D | events.js | 48 get ports () { getter in MessageEvent 51 if (!Object.isFrozen(this.#eventInit.ports)) { 52 Object.freeze(this.#eventInit.ports) 55 return this.#eventInit.ports 66 ports = [] argument 73 bubbles, cancelable, data, origin, lastEventId, source, ports field 169 ports: kEnumerableProperty, property 244 key: 'ports',
|
| /third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
| D | vid_dec.c | 226 priv->ports = CALLOC(2, sizeof(omx_base_PortType *)); in vid_dec_Constructor() 227 if (!priv->ports) in vid_dec_Constructor() 231 priv->ports[i] = CALLOC(1, sizeof(omx_base_video_PortType)); in vid_dec_Constructor() 232 if (!priv->ports[i]) in vid_dec_Constructor() 235 base_video_port_Constructor(comp, &priv->ports[i], i, i == 0); in vid_dec_Constructor() 238 port = (omx_base_video_PortType *)priv->ports[OMX_BASE_FILTER_INPUTPORT_INDEX]; in vid_dec_Constructor() 254 port = (omx_base_video_PortType *)priv->ports[OMX_BASE_FILTER_OUTPUTPORT_INDEX]; in vid_dec_Constructor() 273 if (priv->ports) { in vid_dec_Destructor() 275 if(priv->ports[i]) in vid_dec_Destructor() 276 priv->ports[i]->PortDestructor(priv->ports[i]); in vid_dec_Destructor() [all …]
|
| /third_party/pulseaudio/src/pulse/ |
| D | introspect.c | 202 i.ports = pa_xnew(pa_sink_port_info*, i.n_ports+1); in context_get_sink_info_callback() 203 i.ports[0] = pa_xnew(pa_sink_port_info, i.n_ports); in context_get_sink_info_callback() 206 i.ports[j] = &i.ports[0][j]; in context_get_sink_info_callback() 208 if (pa_tagstruct_gets(t, &i.ports[j]->name) < 0 || in context_get_sink_info_callback() 209 pa_tagstruct_gets(t, &i.ports[j]->description) < 0 || in context_get_sink_info_callback() 210 pa_tagstruct_getu32(t, &i.ports[j]->priority) < 0) { in context_get_sink_info_callback() 215 i.ports[j]->available = PA_PORT_AVAILABLE_UNKNOWN; in context_get_sink_info_callback() 220 i.ports[j]->available = av; in context_get_sink_info_callback() 222 i.ports[j]->availability_group = NULL; in context_get_sink_info_callback() 223 i.ports[j]->type = PA_DEVICE_PORT_TYPE_UNKNOWN; in context_get_sink_info_callback() [all …]
|
| /third_party/skia/third_party/externals/egl-registry/extensions/EXT/ |
| D | EGL_EXT_output_base.txt | 90 EGLOutputPortEXT *ports, 243 EGLOutputPortEXT *ports, 247 On success, EGL_TRUE is returned. If <ports> is NULL, <max_ports> is 248 ignored and the number of output ports which match <attrib_list> is 250 layers will be returned in <ports> and <num_ports> will be set to 251 the number of port handles returned. The states of the output ports 256 by EGL_NONE. If no attributes are provided, all output ports 257 associated with <dpy> will match. Otherwise, only those ports 260 matching ports but all parameters are otherwise valid, success is 264 <ports> and <num_ports> will be unaffected. If <dpy> is not a valid, [all …]
|
| /third_party/EGL/extensions/EXT/ |
| D | EGL_EXT_output_base.txt | 90 EGLOutputPortEXT *ports, 243 EGLOutputPortEXT *ports, 247 On success, EGL_TRUE is returned. If <ports> is NULL, <max_ports> is 248 ignored and the number of output ports which match <attrib_list> is 250 layers will be returned in <ports> and <num_ports> will be set to 251 the number of port handles returned. The states of the output ports 256 by EGL_NONE. If no attributes are provided, all output ports 257 associated with <dpy> will match. Otherwise, only those ports 260 matching ports but all parameters are otherwise valid, success is 264 <ports> and <num_ports> will be unaffected. If <dpy> is not a valid, [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
| D | driver_roboswitch.c | 62 u16 ports; member 241 u16 ports, const u8 *addr) in wpa_driver_roboswitch_join() argument 256 ROBO_ARLCTRL_VEC_1, &ports, 1); in wpa_driver_roboswitch_join() 260 ROBO_ARLCTRL_VEC_2, &ports, 1); in wpa_driver_roboswitch_join() 280 ROBO_ARLCTRL_VEC_1, &ports, 1); in wpa_driver_roboswitch_join() 287 u16 ports, const u8 *addr) in wpa_driver_roboswitch_leave() argument 305 if (os_memcmp(addr_read, addr_be16, 6) == 0 && ports_read == ports) { in wpa_driver_roboswitch_leave() 315 ports_read == ports) { in wpa_driver_roboswitch_leave() 344 ports_read == ports) { in wpa_driver_roboswitch_leave() 443 drv->ports = _read[0] & 0x001F; in wpa_driver_roboswitch_init() [all …]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
| D | driver_roboswitch.c | 62 u16 ports; member 241 u16 ports, const u8 *addr) in wpa_driver_roboswitch_join() argument 256 ROBO_ARLCTRL_VEC_1, &ports, 1); in wpa_driver_roboswitch_join() 260 ROBO_ARLCTRL_VEC_2, &ports, 1); in wpa_driver_roboswitch_join() 280 ROBO_ARLCTRL_VEC_1, &ports, 1); in wpa_driver_roboswitch_join() 287 u16 ports, const u8 *addr) in wpa_driver_roboswitch_leave() argument 305 if (os_memcmp(addr_read, addr_be16, 6) == 0 && ports_read == ports) { in wpa_driver_roboswitch_leave() 315 ports_read == ports) { in wpa_driver_roboswitch_leave() 344 ports_read == ports) { in wpa_driver_roboswitch_leave() 443 drv->ports = _read[0] & 0x001F; in wpa_driver_roboswitch_init() [all …]
|
| /third_party/pulseaudio/src/modules/jack/ |
| D | module-jack-source.c | 61 "connect=<connect ports?>"); 253 const char **ports = NULL, **p; in pa__init() local 301 …ports = jack_get_ports(u->client, NULL, JACK_DEFAULT_AUDIO_TYPE, JackPortIsPhysical|JackPortIsOutp… in pa__init() 304 if (ports) in pa__init() 305 for (p = ports; *p; p++) in pa__init() 341 /* Set order of ports as JACK metadata, if possible. */ in pa__init() 400 for (i = 0, p = ports; i < ss.channels; i++, p++) { in pa__init() 403 pa_log("Not enough physical output ports, leaving unconnected."); in pa__init() 422 if (ports) in pa__init() 423 jack_free(ports); in pa__init() [all …]
|
| /third_party/pulseaudio/src/modules/dbus/ |
| D | iface-device.c | 92 pa_hashmap *ports; member 168 …[PROPERTY_HANDLER_PORTS] = { .property_name = "Ports", … 666 const char **ports; in get_ports() local 674 *n = pa_hashmap_size(d->ports); in get_ports() 679 ports = pa_xnew(const char *, *n); in get_ports() 681 PA_HASHMAP_FOREACH(port, d->ports, state) in get_ports() 682 ports[i++] = pa_dbusiface_device_port_get_path(port); in get_ports() 684 return ports; in get_ports() 689 const char **ports = NULL; in handle_get_ports() local 696 ports = get_ports(d, &n_ports); in handle_get_ports() [all …]
|
| /third_party/ffmpeg/libavdevice/ |
| D | jack.c | 50 jack_port_t ** ports; member 99 jack_port_get_latency_range(self->ports[i], JackCaptureLatency, &range); in process_callback() 101 buffer = jack_port_get_buffer(self->ports[i], self->buffer_size); in process_callback() 164 self->ports = av_malloc_array(self->nports, sizeof(*self->ports)); in start_jack() 165 if (!self->ports) in start_jack() 169 /* Register JACK ports */ in start_jack() 173 self->ports[i] = jack_port_register(self->client, str, in start_jack() 176 if (!self->ports[i]) { in start_jack() 232 av_freep(&self->ports); in stop_jack()
|
| /third_party/alsa-utils/seq/aplaymidi/ |
| D | aplaymidi.1 | 13 or more ALSA sequencer ports. 27 Prints a list of possible output ports. 44 Multiple ports can be specified to allow playback of MIDI file(s) that 45 contain events for multiple devices (ports), as specified by "Port
|