Home | History | Annotate | Download | only in CameraHal

Lines Matching defs:script

101 int execute_functional_script(char *script) {
117 cmd = strtok_r((char *) script, DELIMITER, &ctx);
1057 char *script;
1073 printf("\n SCRIPT : <%s> is currently being executed \n",script_name);
1098 printf("Error while opening script file %s!\n", config);
1106 script = (char *) malloc(fileSize);
1108 if ( NULL == script ) {
1109 printf("Unable to allocate buffer for the script\n");
1114 if ((nRead = fread(script, 1, fileSize, infile)) != fileSize) {
1115 printf("Error while reading script file!\n");
1117 free(script);
1124 return script;
1191 printf("\nlogging for script %s is complete\n logcat saved @ location: %s\n",script_name,dir_path);
1199 int execute_error_script(char *script) {
1206 cmd = strtok_r((char *) script, DELIMITER, &ctx);