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

1 2

  /external/bluetooth/glib/gmodule/
gmodule-dl.c 157 const gchar *module_name)
160 if (strncmp (module_name, "lib", 3) == 0)
161 return g_strconcat (directory, "/", module_name, NULL);
163 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
164 } else if (strncmp (module_name, "lib", 3) == 0)
165 return g_strdup (module_name);
167 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL);
gmodule-dld.c 152 const gchar *module_name)
155 if (strncmp (module_name, "lib", 3) == 0)
156 return g_strconcat (directory, "/", module_name, NULL);
158 return g_strconcat (directory, "/lib", module_name, ".sl", NULL);
159 else if (strncmp (module_name, "lib", 3) == 0)
160 return g_strdup (module_name);
162 return g_strconcat ("lib", module_name, ".sl", NULL);
gmodule-os2.c 132 const gchar *module_name)
134 gchar *suffix = strrchr(module_name, '.');
137 return g_strconcat (directory, "/", module_name, NULL);
139 return g_strconcat (directory, "/", module_name, ".dll", NULL);
141 return g_strdup (module_name);
143 return g_strconcat (module_name, ".dll", NULL);
gmodule-dyld.c 141 const gchar *module_name)
145 if (strncmp (module_name, "lib", 3) == 0)
146 return g_strconcat (directory, "/", module_name, NULL);
148 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
150 else if (strncmp (module_name, "lib", 3) == 0)
151 return g_strdup (module_name);
153 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL);
gmodule-win32.c 243 const gchar *module_name)
247 k = strlen (module_name);
250 if (k > 4 && g_ascii_strcasecmp (module_name + k - 4, ".dll") == 0)
251 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, NULL);
253 else if (strncmp (module_name, "lib", 3) == 0 || strncmp (module_name, "cyg", 3) == 0)
254 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, ".dll", NULL);
256 return g_strconcat (directory, G_DIR_SEPARATOR_S, "cyg", module_name, ".dll", NULL);
258 else if (strncmp (module_name, "lib", 3) == 0)
259 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, ".dll", NULL)
    [all...]
gmodule-ar.c 176 const gchar *module_name)
179 if (strncmp (module_name, "lib", 3) == 0)
180 return g_strconcat (directory, "/", module_name, NULL);
182 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
183 } else if (strncmp (module_name, "lib", 3) == 0)
184 return g_strdup (module_name);
186 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL);
gmodule-beos.c 189 const gchar *module_name)
195 if (strncmp (module_name, "lib", 3) == 0)
196 return g_strconcat (directory, "/", module_name, NULL);
198 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
200 else if (strncmp (module_name, "lib", 3) == 0)
201 return g_strdup (module_name);
203 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL);
gmodule.h 90 * if supplied, and `module_name' suitably decorated accoring to
96 const gchar *module_name);
gmodule.c 85 const gchar *module_name);
190 const gchar *module_name)
681 const gchar *module_name)
683 g_return_val_if_fail (module_name != NULL, NULL);
685 return _g_module_build_path (directory, module_name);
  /development/testrunner/
create_test.py 62 android:label="Tests for $MODULE_NAME">
75 LOCAL_PACKAGE_NAME := ${MODULE_NAME}Tests${CERTIFICATE}
77 LOCAL_INSTRUMENTATION_FOR := ${MODULE_NAME}
86 def _GenerateTestManifest(manifest, module_name, mapping=None):
94 module_name: module name used for labelling
109 mapping = {"PACKAGE_NAME":package_name, "MODULE_NAME":module_name,
158 module_name = mk.GetVariable(mk.PACKAGE_NAME)
159 mapping = {"MODULE_NAME":module_name, "CERTIFICATE":cert_definition
    [all...]
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 284 char* module_name; local
316 module_name = strrchr(module_path,'/');
317 if (module_name == NULL)
318 module_name = module_path;
320 module_name += 1;
321 if (*module_name == '\0') {
324 module_name = module_path;
331 strncat(sym_file, module_name, sizeof(sym_file));
  /external/chromium/chrome/browser/ui/
crypto_module_password_dialog.h 43 void ShowCryptoModulePasswordDialog(const std::string& module_name,
  /external/freetype/include/freetype/
ftmodapi.h 144 /* module_name :: The name of the module. */
163 const FT_String* module_name; member in struct:FT_Module_Class_
213 /* module_name :: The module's name (as an ASCII string). */
224 const char* module_name );
  /external/chromium/base/win/
pe_image.cc 347 LPCSTR module_name = reinterpret_cast<LPCSTR>(RVAToAddr(import->Name)); local
353 if (!callback(*this, module_name, name_table, iat, cookie))
361 LPCSTR module_name,
382 if (!callback(*this, module_name, ordinal, name, hint, iat, cookie))
409 LPCSTR module_name; local
416 module_name = reinterpret_cast<LPCSTR>(
430 module_name = reinterpret_cast<LPCSTR>(delay_descriptor->rvaDLLName);
441 if (!callback(*this, delay_descriptor, module_name, name_table, iat,
451 LPCSTR module_name,
487 if (!callback(*this, module_name, ordinal, name, hint, iat, cookie)
    [all...]
pe_image.h 174 bool EnumOneImportChunk(EnumImportsFunction callback, LPCSTR module_name,
195 LPCSTR module_name,
  /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);
  /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/webkit/Tools/Scripts/
test-webkitpy 238 module_name = os.path.basename(module_path)
239 __import__(module_name)
243 if module_name.endswith("QueueStatusServer"):
  /external/dbus/dbus/
dbus-internals.c 321 static char module_name[1024]; variable
341 GetModuleFileName(0,module_name,sizeof(module_name)-1);
342 last_period = _mbsrchr(module_name,'.');
345 last_slash = _mbsrchr(module_name,'\\');
347 strcpy(module_name,last_slash+1);
348 strcat(module_name,": ");
459 strcpy(buf,module_name);
  /external/chromium/chrome/common/
sandbox_policy.cc 175 // Compares the loaded |module| file name matches |module_name|.
176 bool IsExpandedModuleName(HMODULE module, const wchar_t* module_name) {
186 return (fname.BaseName().value() == module_name);
189 // Adds a single dll by |module_name| into the |policy| blacklist.
192 void BlacklistAddOneDll(const wchar_t* module_name,
194 HMODULE module = ::GetModuleHandleW(module_name);
198 std::wstring name(module_name);
211 if (!IsExpandedModuleName(module, module_name))
216 policy->AddDllToUnload(module_name);
217 VLOG(1) << "dll to unload found: " << module_name;
    [all...]
  /bionic/libc/kernel/common/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /development/ndk/platforms/android-3/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
module.h 106 #define module_name(mod) "kernel" macro

Completed in 3844 milliseconds

1 2