Lines Matching refs:script
100 int execute_functional_script(char *script) {
116 cmd = strtok_r((char *) script, DELIMITER, &ctx);
1052 char *script;
1068 printf("\n SCRIPT : <%s> is currently being executed \n",script_name);
1093 printf("Error while opening script file %s!\n", config);
1101 script = (char *) malloc(fileSize);
1103 if ( NULL == script ) {
1104 printf("Unable to allocate buffer for the script\n");
1109 if ((nRead = fread(script, 1, fileSize, infile)) != fileSize) {
1110 printf("Error while reading script file!\n");
1112 free(script);
1119 return script;
1186 printf("\nlogging for script %s is complete\n logcat saved @ location: %s\n",script_name,dir_path);
1194 int execute_error_script(char *script) {
1201 cmd = strtok_r((char *) script, DELIMITER, &ctx);