HomeSort by relevance Sort by last modified time
    Searched defs:module_name (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/chromium_org/sandbox/win/src/
target_interceptions.cc 47 UNICODE_STRING* module_name = local
51 if ((!module_name) && (image_flags & MODULE_HAS_CODE)) {
54 module_name = ExtractModuleName(file_name);
60 if (!agent->OnDllLoad(file_name, module_name, *base)) {
67 if (module_name)
68 operator delete(module_name, NT_ALLOC);
  /external/compiler-rt/lib/asan/
asan_interface_internal.h 39 const char *module_name; // Module name as a C string. This pointer is a member in struct:__asan_global
56 void __asan_before_dynamic_init(const char *module_name);
  /external/oprofile/daemon/
opd_kernel.c 135 * module_name 16480 1 dependencies Live 0xe091e000
147 char module_name[256+1]; local
179 module_name, &module_size, ref_count,
187 image = opd_create_module(module_name, start_address,
  /external/chromium_org/chrome/browser/ui/views/status_icons/
status_tray_state_changer_win.cc 54 wchar_t module_name[MAX_PATH]; local
55 ::GetModuleFileName(NULL, module_name, MAX_PATH);
57 file_name_ = module_name;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_mapping_libcdep.cc 83 char *module_name = StripModuleName(modules[i].full_name()); local
89 text.append("%zx %zx %zx %s\n", start, end, base, module_name);
94 InternalFree(module_name);
sanitizer_symbolizer_libbacktrace.cc 90 const char *module_name; member in struct:__sanitizer::__anon23444::SymbolizeCodeData
102 info->FillAddressAndModuleInfo(addr, cdata->module_name,
120 info->FillAddressAndModuleInfo(addr, cdata->module_name,
153 const char *module_name,
159 data.module_name = module_name;
184 const char *module_name,
sanitizer_coverage_libcdep.cc 25 // this will create a file module_name.PID.sancov. The file format is simple:
303 char *module_name = StripModuleName(module.data()); local
306 CovWritePacked(internal_getpid(), module_name, offsets.data(), local
313 common_flags()->coverage_dir, module_name,
315 int fd = CovOpenFile(false /* packed */, module_name);
323 InternalFree(module_name);
  /external/elfutils/0.153/libdwfl/
offline.c 212 char *module_name = NULL; local
215 else if (unlikely (asprintf (&module_name, "%s:%s", name, h->ar_name) < 0))
221 name = module_name;
230 free (module_name);
245 free (module_name);
  /external/chromium_org/chrome/browser/profile_resetter/
automatic_profile_resetter_delegate.cc 113 std::string module_name; local
114 if (!module_dictionary->GetString("name", &module_name))
116 StringToLowerASCII(&module_name);
117 module_name_digests->AppendString(base::MD5String(module_name));
  /external/chromium_org/third_party/freetype/include/freetype/
ftmodapi.h 52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' isn't a valid module name, or `property_name
    [all...]
  /external/freetype/include/
ftmodapi.h 52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' isn't a valid module name, or `property_name
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftmodapi.h 52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' isn't a valid module name, or `property_name
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftmodapi.h 52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' isn't a valid module name, or `property_name
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSInfoExtractor.cpp 115 const char *module_name = module.getModuleIdentifier().c_str(); local
157 ALOGE("Out of memory when create RSInfo object for %s!", module_name);
164 module_name);
187 module_name);
205 module_name);
222 module_name);
257 export_foreach_signature->getNumOperands(), module_name);
279 signature_string.str().c_str(), name.str().c_str(), module_name);
290 " are both NULL in %s! (skip)", i, module_name);
295 "#rs_export_foreach"), module_name);
    [all...]
  /hardware/intel/img/libdrm/tests/modeprint/
modeprint.c 51 char *module_name; variable
318 module_name = argv[1];
381 fd = drmOpen(module_name, NULL);
  /development/ndk/platforms/android-3/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /external/chromium_org/extensions/renderer/
extension_helper.cc 255 const std::string& module_name,
260 render_view(), extension_id, module_name, function_name, args, local
  /external/oprofile/daemon/liblegacy/
opd_kernel.c 446 char const * module_name = 0; local
448 module_name = module->image->name;
449 if (!module_name) {
452 module_name = module->name;
454 image = opd_get_kernel_image(module_name, app_name, proc->tid, proc->tgid);
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 322 char* module_name; local
353 module_name = strrchr(module_path,'/');
354 if (module_name == NULL)
355 module_name = module_path;
357 module_name += 1;
358 if (*module_name == '\0') {
361 module_name = module_path;
366 snprintf(sym_file, sizeof(sym_file), "%s/%s", parser->sym_root, module_name);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro

Completed in 1373 milliseconds

1 2 3 4