File: init.sql

package info (click to toggle)
radare 1%3A1.5.2-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 9,920 kB
  • ctags: 24,411
  • sloc: ansic: 128,805; perl: 4,111; sh: 1,892; python: 1,505; makefile: 892; java: 834; asm: 473; php: 414; ruby: 398; cpp: 395; sql: 42; xml: 11
file content (54 lines) | stat: -rw-r--r-- 712 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-- stable

create table blocks (
	address INTEGER,
	end_address INTEGER,
	bytes BLOB,
	hash  VARCHAR(32)
);

create table xrefs (
	address INTEGER,
	xref    INTEGER
);

create table comments (
	time    DATE,
	address INTEGER,
	string  VARCHAR(100)
);

create table labels (
	time    DATE,
	address INTEGER,
	string  VARCHAR(100)
);

create table syscalls (
	address INTEGER,
	block   INTEGER, -- unique id here
	string  VARCHAR(20)
);

-- development

create table trace (
	time    DATE,
	address INTEGER
);

create table entrys (
	address INTEGER
);

create table breakpoints (
	time    DATE,
	address INTEGER,
	enabled BOOLEAN
);

create table dwarf (
	time    DATE,
	address INTEGER,
	string  VARCHAR(100)
);