Searched refs:root (Results 1 – 5 of 5) sorted by relevance
/bootable/recovery/edify/ |
D | parser.y | 29 void yyerror(Expr** root, int* error_count, const char* s); 30 int yyparse(Expr** root, int* error_count); 50 %parse-param {Expr** root} 65 input: expr { *root = $1; } 95 yyerror(root, error_count, buffer); 124 void yyerror(Expr** root, int* error_count, const char* s) {
|
D | main.c | 24 extern int yyparse(Expr** root, int* error_count); 194 Expr* root; in main() local 197 int error = yyparse(&root, &error_count); in main() 201 ExprDump(0, root, buffer); in main() 208 char* result = Evaluate(&state, root); in main()
|
/bootable/recovery/etc/ |
D | init.rc | 20 chown root shell /tmp 53 # Restart adbd so it can run as root 54 on property:service.adb.root=1
|
/bootable/recovery/updater/ |
D | updater.c | 99 Expr* root; in main() local 102 int error = yyparse(&root, &error_count); in main() 133 char* result = Evaluate(&state, root); in main()
|
/bootable/diskinstaller/ |
D | installer.c | 63 cnode *root = config_node("", ""); in read_conf_file() local 64 config_load_file(root, fn); in read_conf_file() 66 if (root->first_child == NULL) { in read_conf_file() 71 return root; in read_conf_file()
|