/external/selinux/semodule-utils/semodule_package/ |
D | semodule_unpackage.c | 47 char *ppfile, *modfile, *fcfile = NULL, *fcdata; in main() local 57 modfile = argv[2]; in main() 75 if (file_to_policy_file(modfile, &out, "w")) in main() 79 fprintf(stderr, "%s: Error while writing module to %s\n", progname, modfile); in main()
|
/external/toybox/toys/other/ |
D | lsmod.c | 20 char *modfile = "/proc/modules"; in lsmod_main() local 21 FILE * file = xfopen(modfile, "r"); in lsmod_main() 33 } else perror_exit("bad %s", modfile); in lsmod_main()
|
/external/python/cpython2/Lib/test/ |
D | test_inspect.py | 36 modfile = mod.__file__ variable 37 if modfile.endswith(('c', 'o')): 38 modfile = modfile[:-1] variable 166 (modfile, 16, 'eggs', [' st = inspect.stack()\n'], 0)) 168 (modfile, 9, 'spam', [' eggs(b + d, c + f)\n'], 0)) 170 (modfile, 43, 'argue', [' spam(a, b, c)\n'], 0)) 172 (modfile, 39, 'abuse', [' self.argue(a, b, c)\n'], 0)) 176 self.assertEqual(git.tr[0][1:], (modfile, 43, 'argue', 178 self.assertEqual(git.tr[1][1:], (modfile, 9, 'spam', 180 self.assertEqual(git.tr[2][1:], (modfile, 18, 'eggs', [all …]
|
/external/virglrenderer/scripts/ |
D | release.sh | 562 --modfile <file> Release the git modules specified in <file> 632 --modfile)
|
/external/python/cpython3/Lib/test/ |
D | test_inspect.py | 47 modfile = mod.__file__ variable 48 if modfile.endswith(('c', 'o')): 49 modfile = modfile[:-1] variable 53 modfile = normcase(modfile) variable 295 (modfile, 16, 'eggs', [' st = inspect.stack()\n'], 0)) 297 (modfile, 9, 'spam', [' eggs(b + d, c + f)\n'], 0)) 299 (modfile, 43, 'argue', [' spam(a, b, c)\n'], 0)) 301 (modfile, 39, 'abuse', [' self.argue(a, b, c)\n'], 0)) 314 (modfile, 43, 'argue', [' spam(a, b, c)\n'], 0)) 316 (modfile, 9, 'spam', [' eggs(b + d, c + f)\n'], 0)) [all …]
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | util.py | 166 with open(modpath, 'w') as modfile: 167 modfile.write(content)
|