Searched refs:key_start (Results 1 – 6 of 6) sorted by relevance
/third_party/glib/gio/ |
D | gdbusdaemon.c | 209 is_key (const char *key_start, const char *key_end, const char *value) in is_key() argument 213 g_assert (key_end >= key_start); in is_key() 214 if (len != (gsize) (key_end - key_start)) in is_key() 217 return strncmp (key_start, value, len) == 0; in is_key() 221 parse_key (MatchElement *element, const char *key_start, const char *key_end) in parse_key() argument 225 if (is_key (key_start, key_end, "type")) in parse_key() 229 else if (is_key (key_start, key_end, "sender")) in parse_key() 233 else if (is_key (key_start, key_end, "interface")) in parse_key() 237 else if (is_key (key_start, key_end, "member")) in parse_key() 241 else if (is_key (key_start, key_end, "path")) in parse_key() [all …]
|
/third_party/glib/gio/gvdb/ |
D | gvdb-format.h | 42 guint32_le key_start; member
|
D | gvdb-reader.c | 52 start = guint32_from_le (item->key_start); in gvdb_table_item_get_key()
|
D | gvdb-builder.c | 397 &entry->key_start, in file_builder_add_hash()
|
/third_party/libxml2/ |
D | rngparser.c | 116 const xmlChar *key_start; member 231 (str == ctxt->key_start) || in xmlCRNGIsKeyword() 1100 if (token->token == ctxt->key_start) { in xmlParseCRNG_component() 1103 start = xmlNewNodeEatName(NULL, (xmlChar *) ctxt->key_start); in xmlParseCRNG_component() 1214 if ((token->token == ctxt->key_start) || in xmlParseCRNG_topLevelBody() 1476 ctxt.key_start = xmlDictLookup(ctxt.dict, BAD_CAST "start", -1); in xmlConvertCRNG()
|
/third_party/ffmpeg/libavutil/ |
D | opt.c | 1519 const char *key_start, *key_end; in get_key() local 1521 key_start = opts += strspn(opts, WHITESPACES); in get_key() 1529 if (!(*rkey = av_malloc(key_end - key_start + 1))) in get_key() 1531 memcpy(*rkey, key_start, key_end - key_start); in get_key() 1532 (*rkey)[key_end - key_start] = 0; in get_key()
|