Home
last modified time | relevance | path

Searched refs:_c (Results 1 – 4 of 4) sorted by relevance

/system/extras/perfprofd/scripts/
Dperf_proto_json2sqlite.py33 self._c = self._conn.cursor()
37 self._c.execute('''CREATE TABLE pids (id integer PRIMARY KEY AUTOINCREMENT,
39 self._c.execute('''CREATE TABLE tids (id integer PRIMARY KEY AUTOINCREMENT,
41 self._c.execute('''CREATE TABLE syms (id integer PRIMARY KEY AUTOINCREMENT,
43 self._c.execute('''CREATE TABLE dsos (id integer PRIMARY KEY AUTOINCREMENT,
45 self._c.execute('''CREATE TABLE samples (id integer PRIMARY KEY AUTOINCREMENT,
49 self._c.execute('''CREATE TABLE stacks (sample_id int not null,
82 self._c.execute("insert into {tn} values (?,?)".format(tn=table_name), (value, key))
91 self._c.execute("insert into samples values (?,?,?)", sample)
93 self._c.execute("insert into stacks values (?,?,?,?,?)", stack)
Dperf_proto_stack_sqlite_flame.py111 self._c = self._conn.cursor()
120 self._c.execute('select id, name from %s' % (name))
122 rows = self._c.fetchmany(100)
142 self._c.execute('select id from pids where name = "simpleperf"')
143 pid_row = self._c.fetchone()
152 self._c.execute(query_prefix + skip_query_str + query_suffix)
158 rows = self._c.fetchmany(100)
/system/bt/embdrv/sbc/decoder/srce/
Dframing.c248 int32_t _a, _b, _c, _d; \
251 _c = *--(_src); \
255 *--(_dest) = _c; \
/system/bt/btif/include/
Dbtif_common.h68 #define maybe_non_aligned_memcpy(_a, _b, _c) \ argument
69 memcpy((void*)(_a), (void*)(_b), (_c))