HomeSort by relevance Sort by last modified time
    Searched refs:port_name (Results 1 - 15 of 15) sorted by null

  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
__init__.py 36 def get(port_name=None, options=None):
38 port_name is None, this routine attempts to guess at the most
40 port_to_use = port_name
51 return test.TestPort(port_name, options)
54 return mac.MacPort(port_name, options)
57 return chromium_mac.ChromiumMacPort(port_name, options)
60 return chromium_linux.ChromiumLinuxPort(port_name, options)
63 return chromium_win.ChromiumWinPort(port_name, options)
chromium_linux.py 43 def __init__(self, port_name=None, options=None):
44 if port_name is None:
45 port_name = 'chromium-linux'
46 chromium.ChromiumPort.__init__(self, port_name, options)
chromium_mac.py 43 def __init__(self, port_name=None, options=None):
44 if port_name is None:
45 port_name = 'chromium-mac'
46 chromium.ChromiumPort.__init__(self, port_name, options)
chromium_win.py 44 def __init__(self, port_name=None, options=None):
45 if port_name is None:
46 port_name = 'chromium-win' + self.version()
47 chromium.ChromiumPort.__init__(self, port_name, options)
test.py 41 def __init__(self, port_name=None, options=None):
42 base.Port.__init__(self, port_name, options)
mac.py 52 def __init__(self, port_name=None, options=None):
53 if port_name is None:
54 port_name = 'mac' + self.version()
55 base.Port.__init__(self, port_name, options)
chromium.py 48 def __init__(self, port_name=None, options=None):
49 base.Port.__init__(self, port_name, options)
base.py 53 def __init__(self, port_name=None, options=None):
54 self._name = port_name
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
early_warning_system.py 44 self.port = WebKitPort.port(self.port_name)
79 message = "Attachment %s did not build on %s:\nBuild output: %s" % (state["patch"].id(), cls.port_name, results_link)
86 port_name = "gtk" variable in class:GtkEWS
95 port_name = "qt" variable in class:QtEWS
100 port_name = "chromium" variable in class:ChromiumEWS
122 port_name = "mac" variable in class:MacEWS
  /device/samsung/crespo/alsa-utils/seq/aseqdump/
aseqdump.c 81 char *buf, *s, *port_name; local
88 for (port_name = s = buf; s; port_name = s + 1) {
91 s = strchr(port_name, ',');
99 err = snd_seq_parse_address(seq, &ports[port_count - 1], port_name);
101 fatal("Invalid port %s - %s", port_name, snd_strerror(err));
  /external/webkit/WebKitTools/Scripts/webkitpy/
webkitport.py 45 def port(port_name):
53 return ports.get(port_name, MacPort)
  /device/samsung/crespo/alsa-utils/amidi/
amidi.c 41 static char *port_name = "default"; variable
503 port_name = optarg;
587 if ((err = snd_rawmidi_open(inputp, outputp, port_name, SND_RAWMIDI_NONBLOCK)) < 0) {
588 error("cannot open port \"%s\": %s", port_name, snd_strerror(err));
646 error("cannot read from port \"%s\": %s", port_name, snd_strerror(err));
  /device/samsung/crespo/alsa-utils/seq/aplaymidi/
aplaymidi.c 131 char *buf, *s, *port_name; local
138 for (port_name = s = buf; s; port_name = s + 1) {
141 s = strchr(port_name, ',');
149 err = snd_seq_parse_address(seq, &ports[port_count - 1], port_name);
151 fatal("Invalid port %s - %s", port_name, snd_strerror(err));
arecordmidi.c 136 char *buf, *s, *port_name; local
143 for (port_name = s = buf; s; port_name = s + 1) {
146 s = strchr(port_name, ',');
154 err = snd_seq_parse_address(seq, &ports[port_count - 1], port_name);
156 fatal("Invalid port %s - %s", port_name, snd_strerror(err));
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_ladspa.c 145 const char *port_name)
151 !strcmp(lplug->desc->PortNames[idx], port_name)) {
    [all...]

Completed in 2917 milliseconds