HomeSort by relevance Sort by last modified time
    Searched full:chr (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/qemu/
qemu-char-android.c 146 CharDriverState *chr; local
150 TAILQ_FOREACH(chr, &chardevs, next) {
151 qemu_chr_reset(chr);
215 static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
222 CharDriverState *chr; local
224 chr = qemu_mallocz(sizeof(CharDriverState));
225 chr->chr_write = null_chr_write;
226 return chr;
254 static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
256 MuxDriver *d = chr->opaque
403 CharDriverState *chr = opaque; local
416 CharDriverState *chr = opaque; local
436 CharDriverState *chr = opaque; local
468 CharDriverState *chr; local
557 CharDriverState *chr = opaque; local
566 CharDriverState *chr = opaque; local
617 CharDriverState *chr; local
696 CharDriverState *chr = opaque; local
714 CharDriverState *chr = opaque; local
780 CharDriverState *chr; local
878 CharDriverState *chr = opaque; local
887 CharDriverState *chr = opaque; local
948 struct CharDriverState *chr = opaque; local
977 CharDriverState *chr; local
1167 CharDriverState *chr; local
1299 CharDriverState *chr; local
1368 CharDriverState *chr; local
1568 CharDriverState *chr = opaque; local
1585 CharDriverState *chr; local
1605 CharDriverState *chr = opaque; local
1684 CharDriverState *chr; local
1704 CharDriverState *chr; local
1755 CharDriverState *chr = opaque; local
1773 CharDriverState *chr = opaque; local
1813 CharDriverState *chr = NULL; local
1883 CharDriverState *chr = opaque; local
1943 CharDriverState *chr = opaque; local
1973 CharDriverState *chr = opaque; local
1999 CharDriverState *chr = opaque; local
2039 CharDriverState *chr = NULL; local
2145 CharDriverState *chr; local
2263 CharDriverState *chr; local
    [all...]
qemu-char.c 138 CharDriverState *chr; local
142 TAILQ_FOREACH(chr, &chardevs, next) {
143 qemu_chr_reset(chr);
207 static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
214 CharDriverState *chr; local
216 chr = qemu_mallocz(sizeof(CharDriverState));
217 chr->chr_write = null_chr_write;
218 return chr;
246 static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
248 MuxDriver *d = chr->opaque
395 CharDriverState *chr = opaque; local
408 CharDriverState *chr = opaque; local
428 CharDriverState *chr = opaque; local
460 CharDriverState *chr; local
545 CharDriverState *chr = opaque; local
554 CharDriverState *chr = opaque; local
605 CharDriverState *chr; local
664 CharDriverState *chr = opaque; local
682 CharDriverState *chr = opaque; local
748 CharDriverState *chr; local
846 CharDriverState *chr = opaque; local
855 CharDriverState *chr = opaque; local
916 struct CharDriverState *chr = opaque; local
945 CharDriverState *chr; local
1134 CharDriverState *chr; local
1266 CharDriverState *chr; local
1335 CharDriverState *chr; local
1535 CharDriverState *chr = opaque; local
1552 CharDriverState *chr; local
1572 CharDriverState *chr = opaque; local
1651 CharDriverState *chr; local
1671 CharDriverState *chr; local
1723 CharDriverState *chr = opaque; local
1741 CharDriverState *chr = opaque; local
1781 CharDriverState *chr = NULL; local
1852 CharDriverState *chr = opaque; local
1912 CharDriverState *chr = opaque; local
1942 CharDriverState *chr = opaque; local
1974 CharDriverState *chr = opaque; local
2030 CharDriverState *chr = NULL; local
2136 CharDriverState *chr; local
2239 CharDriverState *chr; local
    [all...]
qemu-char.h 58 void (*chr_send_event)(struct CharDriverState *chr, int event);
59 void (*chr_close)(struct CharDriverState *chr);
60 void (*chr_accept_input)(struct CharDriverState *chr);
70 void qemu_chr_close(CharDriverState *chr);
monitor.h 14 void monitor_init(CharDriverState *chr, int flags);
curses.c 166 int chr, nextchr, keysym, keycode; local
184 chr = getch();
186 chr = nextchr;
190 if (chr == ERR)
195 if (chr == KEY_RESIZE) {
206 keycode = curses2keycode[chr];
238 keysym = chr;
266 keysym = curses2keysym[chr];
268 keysym = chr;
console.c 150 CharDriverState *chr; member in struct:TextConsole
1080 static int console_puts(CharDriverState *chr, const uint8_t *buf, int len)
1082 TextConsole *s = chr->opaque;
1102 static void console_send_event(CharDriverState *chr, int event)
1104 TextConsole *s = chr->opaque;
1123 len = qemu_chr_can_read(s->chr);
1130 qemu_chr_read(s->chr, buf, len);
1396 CharDriverState *chr; local
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
Base64.java 47 byte chr;
51 chr = in[len-1];
53 if ((chr == '\n') || (chr == '\r') ||
54 (chr == ' ') || (chr == '\t')) {
57 if (chr == '=') {
72 chr = in[i];
74 if ((chr == '\n') || (chr == '\r') ||
    [all...]
  /external/qemu/hw/
msmouse.c 36 CharDriverState *chr = (CharDriverState *)opaque; local
53 qemu_chr_read(chr, bytes, 4);
62 static void msmouse_chr_close (struct CharDriverState *chr)
64 qemu_free (chr);
69 CharDriverState *chr; local
71 chr = qemu_mallocz(sizeof(CharDriverState));
72 chr->chr_write = msmouse_chr_write;
73 chr->chr_close = msmouse_chr_close;
75 qemu_add_mouse_event_handler(msmouse_event, chr, 0, "QEMU Microsoft Mouse");
77 return chr;
    [all...]
bt-hci-csr.c 35 CharDriverState chr; member in struct:csrhci_s
80 if (s->chr.chr_can_read && s->chr.chr_can_read(s->chr.handler_opaque) &&
81 s->chr.chr_read) {
82 s->chr.chr_read(s->chr.handler_opaque,
299 static int csrhci_write(struct CharDriverState *chr,
302 struct csrhci_s *s = (struct csrhci_s *) chr->opaque;
358 static int csrhci_ioctl(struct CharDriverState *chr, int cmd, void *arg
    [all...]
pc.h 11 CharDriverState *chr);
14 CharDriverState *chr, int ioregister);
25 ParallelState *parallel_init(int base, qemu_irq irq, CharDriverState *chr);
26 ParallelState *parallel_mm_init(target_phys_addr_t base, int it_shift, qemu_irq irq, CharDriverState *chr);
devices.h 65 CharDriverState *chr);
  /external/webkit/WebCore/platform/qt/
KURLQt.cpp 60 const char chr = static_cast<char>(m_string[i]); local
62 switch (chr) {
71 ba.append(toHex((chr & 0xf0) >> 4));
72 ba.append(toHex(chr & 0xf));
82 ba.append(chr);
  /packages/apps/Email/src/org/apache/commons/io/output/
ProxyWriter.java 57 * @param chr the characters to write
60 public void write(char[] chr) throws IOException {
61 out.write(chr);
66 * @param chr the characters to write
71 public void write(char[] chr, int st, int end) throws IOException {
72 out.write(chr, st, end);
NullWriter.java 52 * @param chr The characters to write
54 public void write(char[] chr) {
60 * @param chr The characters to write
64 public void write(char[] chr, int st, int end) {
FileWriterWithEncoding.java 271 * @param chr the characters to write
274 public void write(char[] chr) throws IOException {
275 out.write(chr);
280 * @param chr the characters to write
285 public void write(char[] chr, int st, int end) throws IOException {
286 out.write(chr, st, end);
LockableFileWriter.java 287 * @param chr the characters to write
290 public void write(char[] chr) throws IOException {
291 out.write(chr);
296 * @param chr the characters to write
301 public void write(char[] chr, int st, int end) throws IOException {
302 out.write(chr, st, end);
  /packages/providers/DrmProvider/res/values-cs/
strings.xml 21 <string name="permdesc_accessDrm" msgid="3376257809694293454">"Umo?ní aplikaci získat p?ístup k obsahu chrán?nému technologií DRM."</string>
23 <string name="permdesc_installDrm" msgid="8352431922295326348">"Umo?ní aplikaci nainstalovat obsah chrán?ný technologií DRM."</string>
  /external/qemu/distrib/sdl-1.2.12/src/video/epoc/
SDL_epocevents.cpp 254 keymap[EStdKeyF1] = SDLK_F1; /* chr + q */
255 keymap[EStdKeyF2] = SDLK_F2; /* chr + w */
256 keymap[EStdKeyF3] = SDLK_F3; /* chr + e */
257 keymap[EStdKeyF4] = SDLK_F4; /* chr + r */
258 keymap[EStdKeyF5] = SDLK_F5; /* chr + t */
259 keymap[EStdKeyF6] = SDLK_F6; /* chr + y */
260 keymap[EStdKeyF7] = SDLK_F7; /* chr + i */
261 keymap[EStdKeyF8] = SDLK_F8; /* chr + o */
263 keymap[EStdKeyF9] = SDLK_F9; /* chr + a */
264 keymap[EStdKeyF10] = SDLK_F10; /* chr + s *
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
FontMetricsImpl.java 125 for (int chr = 0; chr < 256; chr++) {
126 widths[chr] = (int) (getFontPeer().charWidth((char) chr) * scaleX);
250 char chr; local
253 chr = str.charAt(i);
254 width += charWidth(chr);
CompositeFont.java 97 * @param chr specified character
101 public int getCharFontIndex(char chr){
103 if (fontProperties[i].isCharExcluded(chr)){
106 if (fPhysicalFonts[i].canDisplay(chr)){
120 * @param chr specified character
125 public int getCharFontIndex(char chr, int defaultValue){
127 if (fontProperties[i].isCharExcluded(chr)){
130 if (fPhysicalFonts[i].canDisplay(chr)){
142 * @param chr specified character
145 public boolean canDisplay(char chr){
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
ProxyReader.java 58 * @param chr the buffer to read the characters into
62 public int read(char[] chr) throws IOException {
63 return in.read(chr);
68 * @param chr the buffer to read the characters into
74 public int read(char[] chr, int st, int end) throws IOException {
75 return in.read(chr, st, end);
  /external/clearsilver/python/examples/base/
log.py 77 o = o + '%c[3%d%sm' % (chr(27), fgcolor & 0x7, bright)
79 o = o + '%c[4%dm' % (chr(27), bgcolor)
82 o = o + '%c[0m' % (chr(27))
  /external/ipsec-tools/src/racoon/
prsa_tok.l 70 prsalval.chr = strdup(prsatext);
84 {addr4} { prsalval.chr = strdup(prsatext); return ADDR4; }
85 {addr6} { prsalval.chr = strdup(prsatext); return ADDR6; }
  /external/webkit/WebKitTools/iExploder/htdocs/
iexploder.rb 96 when 8..10 then return rand(255).chr * (rand(256)+8)
97 when 11 then return rand(255).chr * (rand(2048)+8)
122 when 12 then return rand(255).chr * (rand(8192)+8)
125 return (rand(255).chr * length) + " " + (rand(255).chr * length) + " " + (rand(255).chr * length)
126 when 14 then return (rand(255).chr * (rand(1024)+3)) + "px"
127 when 15 then return (rand(255).chr * (rand(1024)+3)) + "em"
  /packages/apps/HTMLViewer/res/values-cs/
strings.xml 21 <string name="permdesc_accessDrm" msgid="36218014609780329">"Umo?ní aplikaci získat p?ístup k obsahu chrán?nému technologií DRM."</string>

Completed in 1869 milliseconds

1 2 3 4