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

1 2

  /external/chromium/chrome/browser/
background_mode_manager_win.cc 58 FilePath executable; local
59 if (!PathService::Get(base::FILE_EXE, &executable))
61 std::wstring new_value = executable.value() +
  /external/gtest/test/
gtest-options_test.cc 131 const FilePath executable = GetCurrentExecutableName(); local
132 const char* const exe_str = executable.c_str();
  /external/protobuf/gtest/test/
gtest-options_test.cc 131 const FilePath executable = GetCurrentExecutableName(); local
132 const char* const exe_str = executable.c_str();
  /external/webkit/Source/JavaScriptCore/runtime/
JSFunction.h 68 ExecutableBase* executable() const { return m_executable.get(); } function in class:JSC::JSFunction
70 // To call either of these methods include Executable.h
  /ndk/toolchains/x86-4.4.3/
setup.mk 92 define cmd-build-executable
  /ndk/build/core/
default-build-commands.mk 46 define cmd-build-executable
  /ndk/toolchains/arm-linux-androideabi-4.4.3/
setup.mk 136 define cmd-build-executable
  /build/core/combo/
TARGET_linux-arm.mk 268 define transform-o-to-executable-inner
289 define transform-o-to-static-executable-inner
TARGET_linux-sh.mk 145 define transform-o-to-executable-inner
165 define transform-o-to-static-executable-inner
TARGET_linux-x86.mk 155 define transform-o-to-executable-inner
175 define transform-o-to-static-executable-inner
HOST_darwin-x86.mk 78 define transform-host-o-to-executable-inner
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 39 String executable = System.getProperty("java.home"); local
40 if (!executable.endsWith(File.separator)) {
41 executable += File.separator;
43 executable += "bin" + File.separator + "java";
55 return run(executable, args, envp, displayOutput);
168 // construct the name of executable file
169 String executable = System.getProperty("java.home"); local
170 if (!executable.endsWith(File.separator)) {
171 executable += File.separator;
173 executable += "bin" + File.separator + "java"
    [all...]
  /external/bluetooth/glib/gio/
gwin32appinfo.c 62 char *executable; member in struct:_GWin32AppInfo
82 g_free (info->executable);
129 info->executable = g_utf16_to_utf8 (buffer, -1, NULL, NULL, NULL);
143 /* TODO: Should look up name from executable resources */
144 if (info->executable)
145 info->name = g_path_get_basename (info->executable);
188 new_info->executable = g_strdup (info->executable);
201 if (info1->executable == NULL ||
202 info2->executable == NULL
    [all...]
gcontenttype.c 280 * types are "executable" on Windows... You can just type foo.jpg as
283 * with "executable".
806 * Checks if a content type can be executable. Note that for instance
810 * can be executable, %FALSE otherwise.
817 if (g_content_type_is_a (type, "application/x-executable") ||
1100 guint executable : 1; member in struct:__anon1932
1194 if (strcmp (parts[i], "executable") == 0)
1195 matchlet->executable = 1;
    [all...]
  /external/dbus/dbus/
dbus-spawn-win.c 70 char *executable; member in struct:DBusBabysitter
241 dbus_free (sitter->executable);
320 sitter->executable, emsg);
328 sitter->executable, sitter->child_status);
335 sitter->executable);
571 _dbus_verbose ("babysitter: spawning %s\n", sitter->executable);
574 sitter->child_handle = spawn_program (sitter->executable,
645 sitter->executable = _dbus_strdup (argv[0]);
646 if (sitter->executable == NULL)
756 _dbus_warn ("Did not get an error launching nonexistent executable\n")
    [all...]
dbus-spawn.c 195 char *executable; /**< executable name to use in error messages */ member in struct:DBusBabysitter
362 dbus_free (sitter->executable);
691 sitter->executable, _dbus_strerror (sitter->errnum));
697 sitter->executable, _dbus_strerror (sitter->errnum));
704 sitter->executable, WEXITSTATUS (sitter->status));
708 sitter->executable, WTERMSIG (sitter->status));
712 sitter->executable);
718 sitter->executable);
1093 * Spawns a new process. The executable name and argv[0
    [all...]
  /external/v8/src/
spaces-inl.h 314 executable_ = (o == NULL) ? NOT_EXECUTABLE : o->executable();
390 Executability executable) {
391 OS::Unprotect(start, size, executable);
404 chunks_[id].owner()->executable() == EXECUTABLE);
476 void LargeObjectChunk::Free(Executability executable) {
479 isolate->memory_allocator()->FreeRawMemory(address(), size(), executable); local
spaces.cc 363 Executability executable) {
369 if (executable == EXECUTABLE) {
370 // Check executable memory limit.
375 "V8 Executable Allocation capacity exceeded"));
378 // Allocate executable memory either from code range or from the
385 // Update executable memory size.
403 Executability executable) {
414 if (executable == EXECUTABLE) size_executable_ -= static_cast<int>(length)
2795 Executability executable = local
3002 Executability executable = local
    [all...]
spaces.h 362 Space(Heap* heap, AllocationSpace id, Executability executable)
363 : heap_(heap), id_(id), executable_(executable) {}
369 // Does the space need executable memory?
370 Executability executable() { return executable_; } function in class:v8::internal::Space
408 // All heap objects containing executable code (code objects) must be allocated
509 // Max capacity of the total space and executable memory limit.
540 bool CommitBlock(Address start, size_t size, Executability executable);
559 // allocated_pages. If the PagedSpace owner is executable and there is
579 // If the flag is EXECUTABLE and a code range exists, the requested
584 Executability executable);
725 Executability executable() const { return executable_; } function in class:v8::internal::MemoryAllocator::BASE_EMBEDDED
    [all...]
  /build/core/
definitions.mk     [all...]
  /development/tools/emulator/opengl/
common.mk 27 emugl-begin-host-executable = $(call emugl-begin-module,$1,HOST_EXECUTABLE,HOST)
38 $(eval LOCAL_MODULE_CLASS := $(patsubst HOST_%,%,$(patsubst %EXECUTABLE,%EXECUTABLES,$(patsubst %LIBRARY,%LIBRARIES,$2)))) \
155 $(if $(filter EXECUTABLE SHARED_LIBRARY,$(_emugl.$(_emugl_MODULE).type)),\
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 1937 FunctionExecutable* executable = function->jsExecutable(); local
1958 FunctionExecutable* executable = function->jsExecutable(); local
2092 ExecutableBase* executable = callee->executable(); local
2126 ExecutableBase* executable = callee->executable(); local
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/include/
bfdlink.h 238 executable. */
253 of an executable, rather than only those used. */
291 /* TRUE if executable should not contain copy relocs.
309 /* TRUE if generating a position independent executable. */
312 /* TRUE if generating an executable, position independent or not. */
313 unsigned int executable : 1;
429 /* The function to call when the executable or shared object is
433 /* The function to call when the executable or shared object is
518 get the size of the entry when generating an executable file.
311 unsigned int executable : 1; member in struct:bfd_link_info
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/include/
bfdlink.h 238 executable. */
253 of an executable, rather than only those used. */
291 /* TRUE if executable should not contain copy relocs.
309 /* TRUE if generating a position independent executable. */
312 /* TRUE if generating an executable, position independent or not. */
313 unsigned int executable : 1;
429 /* The function to call when the executable or shared object is
433 /* The function to call when the executable or shared object is
518 get the size of the entry when generating an executable file.
311 unsigned int executable : 1; member in struct:bfd_link_info
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/
bfdlink.h 237 executable. */
252 of an executable, rather than only those used. */
290 /* TRUE if executable should not contain copy relocs.
308 /* TRUE if generating a position independent executable. */
311 /* TRUE if generating an executable, position independent or not. */
312 unsigned int executable : 1;
408 /* The function to call when the executable or shared object is
412 /* The function to call when the executable or shared object is
492 get the size of the entry when generating an executable file.
310 unsigned int executable : 1; member in struct:bfd_link_info

Completed in 742 milliseconds

1 2