/external/blktrace/ |
blktrace.c | 112 struct cl_host *ch; member in struct:devpath 212 * back reference to the host ('ch'), and lists headers (for the host 217 struct cl_host *ch; member in struct:cl_conn 1479 len += sprintf(dst + len, "%s-", nc->ch->hostname); 2207 struct cl_host *ch = list_entry(p, struct cl_host, head); local 2219 struct cl_host *ch; local 2277 struct cl_host *ch; local [all...] |
/external/bluetooth/bluez/test/ |
btiotest.c | 311 static void rfcomm_connect(const char *src, const char *dst, uint8_t ch, 317 printf("Connecting to %s RFCOMM channel %u\n", dst, ch); 327 BT_IO_OPT_CHANNEL, ch, 335 BT_IO_OPT_CHANNEL, ch, 346 static void rfcomm_listen(const char *src, uint8_t ch, gboolean defer, 371 BT_IO_OPT_CHANNEL, ch, 379 BT_IO_OPT_CHANNEL, ch, 391 BT_IO_OPT_CHANNEL, &ch, 394 printf("Listening on RFCOMM channel %u\n", ch);
|
/external/grub/stage2/ |
fsys_ext2fs.c | 514 char ch; /* temp char holder */ local 697 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; 725 *rest = ch; 744 *rest = ch; 768 if (print_possibilities && ch != '/' 781 while (!dp->inode || (str_chk || (print_possibilities && ch != '/'))); 784 *(dirname = rest) = ch;
|
/external/qemu/ |
readline.c | 82 static void readline_insert_char(ReadLineState *rs, int ch) 88 rs->cmd_buf[rs->cmd_buf_index] = ch; 342 void readline_handle_byte(ReadLineState *rs, int ch) 346 switch(ch) { 386 if (ch >= 32) { 387 readline_insert_char(rs, ch); 393 if (ch == '[') { 401 switch(ch) { 417 rs->esc_param = rs->esc_param * 10 + (ch - '0');
|
/bionic/libc/unistd/ |
syslog.c | 109 char ch, *p, *t; local 194 for (t = fmt_cpy, fmt_left = FMT_LEN; (ch = *fmt); ++fmt) { 195 if (ch == '%' && fmt[1] == 'm') { 210 } else if (ch == '%' && fmt[1] == '%' && fmt_left > 2) { 217 *t++ = ch;
|
/external/bluetooth/glib/gio/ |
gcancellable.c | 315 char ch; local 320 g_io_channel_read_chars (cancellable->read_channel, &ch, 1, 326 read (cancellable->cancel_pipe[0], &ch, 1); 471 char ch = 'x'; local 475 write (cancellable->cancel_pipe[1], &ch, 1);
|
/external/bluetooth/glib/glib/ |
guniprop.c | 1178 gunichar ch = g_utf8_get_char (p); local 1183 if (ch >= casefold_table[start].ch && 1184 ch <= casefold_table[end - 1].ch) 1189 if (ch == casefold_table[half].ch) 1196 else if (ch > casefold_table[half].ch) [all...] |
/external/icu4c/common/ |
uniset_props.cpp | 849 static UBool numericValueFilter(UChar32 ch, void* context) { 850 return u_getNumericValue(ch) == *(double*)context; 853 static UBool generalCategoryMaskFilter(UChar32 ch, void* context) { 855 return (U_GET_GC_MASK((UChar32) ch) & value) != 0; 858 static UBool versionFilter(UChar32 ch, void* context) { 861 u_charAge(ch, v); 870 static UBool intPropertyFilter(UChar32 ch, void* context) { 872 return u_getIntPropertyValue((UChar32) ch, c->prop) == c->value; 913 for (UChar32 ch = start; ch <= end; ++ch) 938 char ch; local 1052 UChar32 ch = u_charFromName(choice, buf, &ec); local [all...] |
/external/icu4c/i18n/ |
anytrans.cpp | 123 UChar32 ch; local 138 ch = text.char32At(start - 1); // look back 139 s = uscript_getScript(ch, &ec); 150 ch = text.char32At(limit); // look ahead 151 s = uscript_getScript(ch, &ec);
|
strmatch.cpp | 198 UChar32 ch; local 199 for (int32_t i=0; i<pattern.length(); i+=UTF_CHAR_LENGTH(ch)) { 200 ch = pattern.char32At(i); 201 const UnicodeMatcher* matcher = data->lookupMatcher(ch); 203 toUnionTo.add(ch);
|
strrepl.cpp | 296 UChar32 ch; local 297 for (int32_t i=0; i<output.length(); i+=UTF_CHAR_LENGTH(ch)) { 298 ch = output.char32At(i); 299 UnicodeReplacer* r = data->lookupReplacer(ch); 301 toUnionTo.add(ch);
|
/external/libxml2/ |
hash.c | 66 char ch; local 70 while ((ch = *name++) != 0) { 71 value = value ^ ((value << 5) + (value >> 3) + (unsigned long)ch); 75 while ((ch = *name2++) != 0) { 76 value = value ^ ((value << 5) + (value >> 3) + (unsigned long)ch); 80 while ((ch = *name3++) != 0) { 81 value = value ^ ((value << 5) + (value >> 3) + (unsigned long)ch); 93 char ch; local 101 while ((ch = *prefix++) != 0) { 102 value = value ^ ((value << 5) + (value >> 3) + (unsigned long)ch); [all...] |
/external/openssl/ssl/ |
ssl_ciph.c | 783 char ch; local 789 ch = *l; 791 if (ch == '\0') 793 if (ch == '-') 795 else if (ch == '+') 797 else if (ch == '!') 799 else if (ch == '@') 804 if (ITEM_SEP(ch)) 815 ch = *l; 819 while ( ((ch >= 'A') && (ch <= 'Z')) | [all...] |
/external/skia/src/animator/ |
SkParseSVGPath.cpp | 135 char ch = data[0]; local 136 if (is_digit(ch) || ch == '-' || ch == '+') { 141 op = ch;
|
/external/webkit/JavaScriptCore/runtime/ |
FunctionPrototype.cpp | 77 UChar ch = functionBody[i]; local 78 if (!Lexer::isWhiteSpace(ch) && !Lexer::isLineTerminator(ch)) { 79 if (ch != ';' && ch != '}')
|
/frameworks/base/awt/org/apache/harmony/awt/gl/font/ |
CompositeFont.java | 410 * @param ch specified char 413 public Glyph getGlyph(char ch){ 415 if (fontProperties[i].isCharExcluded(ch)){ 420 if ((ch < 0x20) || fPhysicalFonts[i].canDisplay(ch)){ 421 return fPhysicalFonts[i].getGlyph(ch);
|
FontPeerImpl.java | 161 * @param ch specified char 163 public abstract Glyph getGlyph(char ch); 250 * @param ch the char which width is to be returned 253 public int charWidth(char ch) { 260 char[] ca = {ch};
|
/frameworks/base/core/java/com/android/internal/os/ |
LoggingPrintStream.java | 203 public synchronized void print(char ch) { 204 builder.append(ch); 205 if (ch == '\n') { 259 public synchronized void println(char ch) { 260 builder.append(ch);
|
/bootable/bootloader/legacy/arch_msm7k/ |
nand.c | 47 static void dmov_prep_ch(dmov_ch *ch, unsigned id) 49 ch->cmd = DMOV_CMD_PTR(id); 50 ch->result = DMOV_RSLT(id); 51 ch->status = DMOV_STATUS(id); 52 ch->config = DMOV_CONFIG(id); 68 dmov_ch ch; local 71 dmov_prep_ch(&ch, id); 73 writel(DMOV_CMD_PTR_LIST | DMOV_CMD_ADDR(paddr(ptr)), ch.cmd); 75 while(!(readl(ch.status) & DMOV_STATUS_RSLT_VALID)) ; 77 n = readl(ch.status) [all...] |
/external/apache-http/src/org/apache/http/impl/io/ |
AbstractMessageParser.java | 135 char ch = current.charAt(i); local 136 if (ch != ' ' && ch != '\t') {
|
/external/bluetooth/glib/tests/ |
unicode-normalize.c | 14 unsigned ch; local 20 if (sscanf (input + offset, "%x", &ch) != 1) 26 g_string_append_unichar (result, ch);
|
/external/e2fsprogs/lib/blkid/ |
getsize.c | 63 char ch; local 67 if (read(fd, &ch, 1) < 1) 91 char ch; local
|
/external/oprofile/libpopt/ |
popthelp.c | 376 const char * ch; local 379 ch = help + lineLength - 1; 380 while (ch > help && !isspace(*ch)) ch--; 381 if (ch == help) break; /* give up */ 382 while (ch > (help + 1) && isspace(*ch)) ch--; 383 ch++ [all...] |
/external/webkit/JavaScriptCore/wtf/unicode/glib/ |
UnicodeGLib.cpp | 2 * Copyright (C) 2008 Jürg Billeter <j@bitron.ch> 28 UChar32 foldCase(UChar32 ch) 33 utf8char.set(g_ucs4_to_utf8(reinterpret_cast<gunichar*>(&ch), 1, 0, 0, &gerror.outPtr())); 35 return ch;
|
/external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/ |
msgutil.py | 132 ch = _read(request, 1) 133 if ch == delim_char: 135 bytes.append(ch)
|