-
Notifications
You must be signed in to change notification settings - Fork 2
/
TAGS
192 lines (179 loc) · 11.7 KB
/
TAGS
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
dirops.c,594
#define BUF_SIZE BUF_SIZE6,66
static apr_status_t dir_cleanup(void *thedir)dir_cleanup9,90
apr_status_t lkl_dir_open(lkl_dir_t **new, const char *dirname,lkl_dir_open18,232
apr_status_t lkl_dir_close(lkl_dir_t *thedir)lkl_dir_close39,865
apr_status_t lkl_dir_make(const char *path, apr_fileperms_t perm,lkl_dir_make45,982
apr_status_t lkl_dir_remove(const char *path, apr_pool_t *pool)lkl_dir_remove55,1208
struct dirent * lkl_readdir(lkl_dir_t *thedir)lkl_readdir64,1341
apr_status_t lkl_dir_read(apr_finfo_t * finfo, apr_int32_t wanted, lkl_dir_t * thedir)lkl_dir_read83,1767
disk.c,170
unsigned long lkl_disk_get_sectors(void *file)lkl_disk_get_sectors5,53
int lkl_disk_do_rw(void *_file, unsigned long sector, unsigned long nsect,lkl_disk_do_rw16,246
fileops.c,1789
#define APR_FILE_BUFSIZE APR_FILE_BUFSIZE8,139
apr_status_t lkl_file_flush_locked(lkl_file_t *thefile)lkl_file_flush_locked10,170
apr_status_t lkl_file_flush(lkl_file_t *thefile)lkl_file_flush34,591
static apr_status_t file_cleanup(lkl_file_t *file)file_cleanup50,901
apr_status_t lkl_unix_file_cleanup(void *thefile)lkl_unix_file_cleanup71,1254
apr_status_t lkl_unix_child_file_cleanup(void *thefile)lkl_unix_child_file_cleanup83,1521
apr_status_t lkl_file_open(lkl_file_t **new, const char *fname,lkl_file_open89,1614
apr_status_t lkl_file_close(lkl_file_t *file)lkl_file_close207,3698
static apr_status_t lkl_wait_for_io_or_timeout(lkl_file_t *f, int for_read)lkl_wait_for_io_or_timeout212,3821
static apr_status_t file_read_buffered(lkl_file_t *thefile, void *buf,file_read_buffered234,4205
apr_status_t lkl_file_read(lkl_file_t *thefile, void *buf,lkl_file_read295,5452
apr_status_t lkl_file_write(lkl_file_t *thefile, const void *buf,lkl_file_write370,6698
apr_status_t lkl_file_read_full(lkl_file_t *thefile, void *buf,lkl_file_read_full461,8556
apr_status_t lkl_file_write_full(lkl_file_t *thefile, const void *buf,lkl_file_write_full484,8990
static apr_status_t setptr(lkl_file_t *thefile, apr_off_t pos )setptr507,9449
apr_status_t lkl_file_seek(lkl_file_t *thefile, apr_seek_where_t where, apr_off_t *offset)lkl_file_seek541,10095
apr_status_t lkl_file_eof(lkl_file_t *fptr)lkl_file_eof593,10985
apr_status_t lkl_file_remove(const char *path, apr_pool_t *pool)lkl_file_remove601,11099
apr_status_t lkl_file_rename(const char *from_path, const char *to_path,lkl_file_rename609,11233
apr_status_t lkl_file_lock(lkl_file_t *thefile, int type)lkl_file_lock618,11410
apr_status_t lkl_file_unlock(lkl_file_t *thefile)lkl_file_unlock639,11844
filestat.c,1031
#define __KERNEL____KERNEL__3,22
apr_fileperms_t lkl_unix_mode2perms(mode_t mode)lkl_unix_mode2perms12,134
mode_t lkl_unix_perms2mode(apr_fileperms_t perms)lkl_unix_perms2mode46,787
static apr_filetype_e filetype_from_mode(mode_t mode)filetype_from_mode80,1430
static void fill_out_finfo(apr_finfo_t *finfo, struct stat *info,apr_int32_t wanted)fill_out_finfo114,1960
apr_status_t lkl_file_info_get_locked(apr_finfo_t *finfo, apr_int32_t wanted,lkl_file_info_get_locked132,2675
apr_status_t lkl_file_info_get(apr_finfo_t *finfo, apr_int32_t wanted, lkl_file_t *thefile)lkl_file_info_get156,3228
apr_status_t lkl_file_perms_set(const char *fname, apr_fileperms_t perms)lkl_file_perms_set178,3723
apr_status_t lkl_file_attrs_set(const char *fname, apr_fileattrs_t attributes,lkl_file_attrs_set190,3947
apr_status_t lkl_file_mtime_set(const char *fname, apr_time_t mtime,lkl_file_mtime_set243,5201
apr_status_t lkl_stat(apr_finfo_t *finfo,const char *fname, apr_int32_t wanted, apr_pool_t *pool)lkl_stat268,5730
lklops.c,2060
volatile int shutting_down = 0;shutting_down19,348
static apr_pool_t *pool;pool20,380
struct _thread_info {_thread_info22,406
apr_thread_t *thread;thread23,428
apr_thread_mutex_t *sched_mutex;sched_mutex24,458
int dead;dead25,499
struct kernel_thread_helper_arg {kernel_thread_helper_arg28,514
int (*fn)(void*);fn29,548
void *arg;arg30,574
struct _thread_info *pti;pti31,593
static int debug_thread_count=0;debug_thread_count34,631
void* linux_thread_info_alloc(void)linux_thread_info_alloc36,665
void linux_context_switch(void *prev, void *next)linux_context_switch49,968
apr_thread_mutex_t *kth_mutex;kth_mutex65,1440
void* APR_THREAD_FUNC kernel_thread_helper(apr_thread_t *thr, void *arg)kernel_thread_helper67,1472
void linux_free_thread(void *arg)linux_free_thread79,1870
int linux_new_thread(int (*fn)(void*), void *arg, void *pti)linux_new_thread86,2041
apr_thread_mutex_t *lock;lock102,2489
int count;count103,2516
apr_thread_cond_t *cond;cond104,2528
} apr_sem_t;apr_sem_t105,2554
unsigned long long linux_time(void)linux_time107,2568
static unsigned long long timer_exp;timer_exp116,2711
static apr_file_t *events_pipe_in, *events_pipe_out;events_pipe_in117,2748
static apr_file_t *events_pipe_in, *events_pipe_out;events_pipe_out117,2748
static apr_pollset_t *pollset;pollset118,2801
void linux_timer(unsigned long delta)linux_timer120,2833
void linux_exit_idle(void)linux_exit_idle128,2941
void linux_enter_idle(int halted)linux_enter_idle136,3047
long linux_panic_blink(long time)linux_panic_blink162,3550
static void *_phys_mem;_phys_mem168,3612
void linux_mem_init(unsigned long *phys_mem, unsigned long *phys_mem_size)linux_mem_init170,3637
void linux_halt(void)linux_halt176,3797
static struct linux_native_operations lnops = {lnops180,3841
void* APR_THREAD_FUNC init_thread(apr_thread_t *thr, void *arg)init_thread196,4243
void lkl_init(int (*init_2)(void))lkl_init203,4393
void lkl_fini(unsigned int flag)lkl_fini235,5114
lua_main.c,396
lua_State* L;L8,128
apr_pool_t * gp;gp9,142
int luk_stat(lua_State * L)luk_stat10,159
int luk_get_pid(lua_State * L)luk_get_pid40,816
static const struct luaL_reg fslib[] = {fslib57,1182
static apr_status_t lua_lkl_register(lua_State * L, apr_pool_t * root_pool)lua_lkl_register73,1501
apr_status_t lua_lkl_main(const char * script_file, apr_pool_t * root_pool)lua_lkl_main103,1837
main.c,769
apr_pool_t * root_pool;root_pool22,460
static const char *script_name="default.lua";script_name24,485
static const char *disk_image="disk";disk_image25,531
static const char *fs_type;fs_type26,569
static int ro=0;ro27,597
static dev_t devno;devno28,614
static apr_file_t *disk_file;disk_file29,634
static int init_err;init_err30,664
apr_thread_mutex_t *wait_init;wait_init34,708
int lkl_init_2(void)lkl_init_236,740
static const apr_getopt_option_t opt_option[] = {opt_option59,1220
void show_help(const char *name)show_help71,1695
static int parse_command_line(int argc, char const *const * argv)parse_command_line85,1997
int main(int argc, char const *const * argv, char const *const * engv)main125,2607
int *stupidGdb;stupidGdb193,4347
syscall_helpers.c,442
static apr_thread_mutex_t *syscall_mutex;syscall_mutex4,54
static apr_pool_t *syscall_pool;syscall_pool5,96
static apr_thread_mutex_t *wait_syscall_mutex;wait_syscall_mutex6,129
void syscall_helpers_init(void)syscall_helpers_init8,177
void syscall_helpers_fini(void)syscall_helpers_fini16,468
void syscall_done(void *arg)syscall_done23,581
void syscall_enter(void)syscall_enter28,661
void syscall_exit(void)syscall_exit33,730
syscalls.c,2445
#define SYSCALL_REQ(SYSCALL_REQ15,242
long wrapper_sys_sync(void)wrapper_sys_sync28,531
static struct linux_syscall_request halt_sr = {halt_sr33,584
long wrapper_sys_halt(void)wrapper_sys_halt38,666
long wrapper_sys_umount(const char *path, int flags)wrapper_sys_umount44,763
ssize_t wrapper_sys_write(unsigned int fd, const char *buf, size_t count)wrapper_sys_write49,862
long wrapper_sys_close(unsigned int fd)wrapper_sys_close54,984
long wrapper_sys_unlink(const char *pathname)wrapper_sys_unlink59,1054
long wrapper_sys_open(const char *filename, int flags, int mode)wrapper_sys_open64,1143
long wrapper_sys_poll(struct pollfd *ufds, unsigned int nfds, long timeout)wrapper_sys_poll69,1268
ssize_t wrapper_sys_read(unsigned int fd, char *buf, size_t count)wrapper_sys_read74,1396
off_t wrapper_sys_lseek(unsigned int fd, off_t offset, unsigned int origin)wrapper_sys_lseek79,1510
long wrapper_sys_rename(const char *oldname, const char *newname)wrapper_sys_rename84,1632
long wrapper_sys_flock(unsigned int fd, unsigned int cmd)wrapper_sys_flock89,1755
long wrapper_sys_newfstat(unsigned int fd, struct stat *statbuf)wrapper_sys_newfstat94,1848
long wrapper_sys_chmod(const char *filename, mode_t mode)wrapper_sys_chmod99,1961
long wrapper_sys_newlstat(char *filename, struct stat *statbuf)wrapper_sys_newlstat104,2067
long wrapper_sys_mkdir(const char *pathname, int mode)wrapper_sys_mkdir109,2191
long wrapper_sys_rmdir(const char *pathname)wrapper_sys_rmdir114,2294
long wrapper_sys_getdents(unsigned int fd, struct linux_dirent *dirent, unsigned int count)wrapper_sys_getdents119,2381
long wrapper_sys_newstat(char *filename, struct stat *statbuf)wrapper_sys_newstat124,2527
long wrapper_sys_utimes(const char *filename, struct timeval *utimes)wrapper_sys_utimes129,2649
long _wrapper_sys_mount(const char *dev, const char *mnt_point, const char *fs, int flags, void *data)_wrapper_sys_mount134,2775
long wrapper_sys_chdir(const char *dir)wrapper_sys_chdir140,2962
long wrapper_sys_mknod(const char *filename, int mode, unsigned dev)wrapper_sys_mknod146,3040
long wrapper_sys_chroot(const char *dir)wrapper_sys_chroot152,3163
static void get_fs_names(char *page)get_fs_names160,3281
static int try_mount(char *fstype, char *devno_str, char *mnt, int flags, void *data)try_mount179,3725
long wrapper_sys_mount(void *file, int devno, char *fstype, int ro)wrapper_sys_mount209,4269
thread_wrapper.c,614
static volatile apr_uint32_t number_of_threads = -1;number_of_threads4,53
static apr_thread_mutex_t * all_threads_are_gone_mutex;all_threads_are_gone_mutex5,106
apr_status_t wrapper_apr_thread_init(apr_pool_t * pool)wrapper_apr_thread_init7,163
apr_status_t wrapper_apr_thread_create (apr_thread_t **new_thread, apr_threadattr_t *attr, apr_thread_start_t func, void *data, apr_pool_t *cont)wrapper_apr_thread_create23,548
apr_status_t wrapper_apr_thread_exit (apr_thread_t *thd, apr_status_t retval)wrapper_apr_thread_exit34,894
void wrapper_apr_thread_join_all(void)wrapper_apr_thread_join_all47,1247
utils.c,424
char* lfd_apr_strerror_thunsafe(apr_status_t rc)lfd_apr_strerror_thunsafe9,160
void lfd_log(enum err_levels lvl, char * fmt, ...)lfd_log16,330
void bug(const char* p_text)bug25,504
apr_size_t lfd_ascii_bin_to_ascii(const char* p_in, char* p_out, apr_size_t in_len)lfd_ascii_bin_to_ascii32,574
struct ascii_to_bin_ret lfd_ascii_ascii_to_bin(char* p_buf, apr_size_t in_len, int prev_cr)lfd_ascii_ascii_to_bin57,1133
drivers/console.c,253
static void console_write(struct console *con, const char *str, unsigned len)console_write7,125
static struct console console = {console12,229
static int __init console_init(void)console_init19,360
late_initcall(console_init);console_init25,442
drivers/disk.c,796
struct lkl_disk_dev {lkl_disk_dev11,207
void *file;file12,229
spinlock_t lock; /* For mutual exclusion */lock13,242
struct request_queue *queue; /* The device request queue */queue14,309
struct gendisk *gd; /* The gendisk structure */gd15,380
static void lkl_disk_request(request_queue_t *q)lkl_disk_request18,452
static int lkl_disk_open(struct inode *inode, struct file *filp)lkl_disk_open38,916
static struct block_device_operations lkl_disk_ops = {lkl_disk_ops46,1091
static int major;major52,1218
static int which=0;which53,1236
int lkl_disk_add_disk(void *file, dev_t *devno)lkl_disk_add_disk55,1257
static int __init lkl_disk_init(void)lkl_disk_init96,2286
late_initcall(lkl_disk_init);lkl_disk_init107,2479