Searched defs:executable (Results 1 - 25 of 37) sorted by relevance

12

/external/linux-tools-perf/config/
H A Dutilities.mak139 # Usage: absolute-executable-path-or-empty = $(call lookup,path)
147 # is-executable
149 # Usage: bool-value = $(call is-executable,path)
154 is-executable = $(call _is-executable-helper,$(shell-sq))
155 _is-executable-helper = $(shell sh -c $(_is-executable-sh))
156 _is-executable-sh = $(call shell-sq,test -f $(1) -a -x $(1) && echo y)
158 # get-executable
160 # Usage: absolute-executable
[all...]
/external/chromium/chrome/browser/
H A Dbackground_mode_manager_win.cc58 FilePath executable; local
59 if (!PathService::Get(base::FILE_EXE, &executable))
61 std::wstring new_value = executable.value() +
/external/protobuf/gtest/test/
H A Dgtest-options_test.cc131 const FilePath executable = GetCurrentExecutableName(); local
132 const char* const exe_str = executable.c_str();
/external/webkit/Source/JavaScriptCore/wtf/
H A DOSAllocatorPosix.cpp36 void* OSAllocator::reserveUncommitted(size_t bytes, Usage usage, bool writable, bool executable) argument
38 void* result = reserveAndCommit(bytes, usage, writable, executable);
46 void* OSAllocator::reserveAndCommit(size_t bytes, Usage usage, bool writable, bool executable) argument
52 if (executable)
65 if (executable) {
H A DOSAllocatorWin.cpp34 static inline DWORD protection(bool writable, bool executable) argument
36 return executable ?
41 void* OSAllocator::reserveUncommitted(size_t bytes, Usage, bool writable, bool executable) argument
43 void* result = VirtualAlloc(0, bytes, MEM_RESERVE, protection(writable, executable));
49 void* OSAllocator::reserveAndCommit(size_t bytes, Usage, bool writable, bool executable) argument
51 void* result = VirtualAlloc(0, bytes, MEM_RESERVE | MEM_COMMIT, protection(writable, executable));
57 void OSAllocator::commit(void* address, size_t bytes, bool writable, bool executable) argument
59 void* result = VirtualAlloc(address, bytes, MEM_COMMIT, protection(writable, executable));
H A DPageAllocationAligned.cpp31 PageAllocationAligned PageAllocationAligned::allocate(size_t size, size_t alignment, OSAllocator::Usage usage, bool writable, bool executable) argument
46 if (executable)
57 void* reservationBase = OSAllocator::reserveUncommitted(reservationSize, usage, writable, executable);
63 OSAllocator::commit(alignedBase, size, writable, executable);
H A DPageReservation.h104 static PageReservation reserve(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false)
107 return PageReservation(OSAllocator::reserveUncommitted(size, usage, writable, executable), size, writable, executable);
126 PageReservation(void* base, size_t size, bool writable, bool executable) argument
130 , m_executable(executable)
H A DOSAllocator.h48 static void* reserveUncommitted(size_t, Usage = UnknownUsage, bool writable = true, bool executable = false);
54 static void commit(void*, size_t, bool writable, bool executable);
60 static void* reserveAndCommit(size_t, Usage = UnknownUsage, bool writable = true, bool executable = false);
66 static void* reserveAndCommit(size_t reserveSize, size_t commitSize, Usage = UnknownUsage, bool writable = true, bool executable = false);
70 inline void* OSAllocator::reserveAndCommit(size_t reserveSize, size_t commitSize, Usage usage, bool writable, bool executable) argument
72 void* base = reserveUncommitted(reserveSize, usage, writable, executable);
73 commit(base, commitSize, writable, executable);
H A DOSAllocatorSymbian.cpp77 void* OSAllocator::reserveUncommitted(size_t reservationSize, Usage usage, bool , bool executable) argument
80 if (executable)
97 void OSAllocator::commit(void* address, size_t bytes, bool, bool executable) argument
101 if (!executable)
113 void* OSAllocator::reserveAndCommit(size_t bytes, Usage usage, bool writable, bool executable) argument
115 void* base = reserveUncommitted(bytes, usage, writable, executable);
116 commit(base, bytes, writable, executable);
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSFunction.h68 ExecutableBase* executable() const { return m_executable.get(); } function in class:JSC::JSFunction
H A DJSFunction.cpp79 // We separate out intialisation from setting the executable
87 JSFunction::JSFunction(ExecState* exec, FunctionExecutable* executable, ScopeChainNode* scopeChainNode) argument
89 , m_executable(exec->globalData(), this, executable)
143 // if this is a host function, as the executable isn't necessarily created
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
H A DRSSFeedUtil.java46 public ExecTask runExecTask(String executable, String commandline, String dir) argument
53 exec.setExecutable(executable);
56 Project project = new Project(); project.setName(executable);
72 System.out.println(Messages.getString("RSSFeedPublisherTask.Execute") + SP + executable + (commandline==null?"":SP + commandline)); //$NON-NLS-1$ //$NON-NLS-2$
/external/v8/src/
H A Dspaces-inl.h140 Executability executable) {
141 OS::Unprotect(start, size, executable);
154 chunks_[id].owner()->executable() == EXECUTABLE);
164 Executability executable,
138 Unprotect(Address start, size_t size, Executability executable) argument
162 Initialize(Heap* heap, MemoryChunk* chunk, Executability executable, PagedSpace* owner) argument
H A Dplatform-nullos.cc237 bool executable) {
315 bool VirtualMemory::Commit(void* address, size_t size, bool executable) { argument
235 Allocate(const size_t requested, size_t* allocated, bool executable) argument
H A Dplatform-freebsd.cc169 bool executable) {
171 int prot = PROT_READ | PROT_WRITE | (executable ? PROT_EXEC : 0);
296 // Ignore mappings that are not executable.
167 Allocate(const size_t requested, size_t* allocated, bool executable) argument
H A Dspaces.cc296 Executability executable) {
305 if (executable == EXECUTABLE) {
312 ASSERT(executable == NOT_EXECUTABLE || !isolate_->code_range()->exists());
319 Executability executable) {
326 if (executable == EXECUTABLE) {
331 ASSERT(executable == EXECUTABLE);
334 ASSERT(executable == NOT_EXECUTABLE || !isolate_->code_range()->exists());
358 Executability executable,
364 if (executable == EXECUTABLE) {
435 Executability executable,
295 FreeMemory(VirtualMemory* reservation, Executability executable) argument
317 FreeMemory(Address base, size_t size, Executability executable) argument
356 AllocateAlignedMemory(size_t size, size_t alignment, Executability executable, VirtualMemory* controller) argument
430 Initialize(Heap* heap, Address base, size_t size, Address area_start, Address area_end, Executability executable, Space* owner) argument
490 AllocateChunk(intptr_t body_size, Executability executable, Space* owner) argument
575 AllocatePage(PagedSpace* owner, Executability executable) argument
587 AllocateLargePage(intptr_t object_size, Executability executable, Space* owner) argument
621 CommitBlock(Address start, size_t size, Executability executable) argument
776 PagedSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id, Executability executable) argument
2579 AllocateRaw(int object_size, Executability executable) argument
[all...]
H A Dspaces.h515 Executability executable() { function in class:v8::internal::MemoryChunk
634 Executability executable,
708 Executability executable,
759 Space(Heap* heap, AllocationSpace id, Executability executable) argument
760 : heap_(heap), id_(id), executable_(executable) {}
766 // Does the space need executable memory?
767 Executability executable() { return executable_; } function in class:v8::internal::Space
807 // All heap objects containing executable code (code objects) must be allocated
948 // Max capacity of the total space and executable memory limit.
953 Page* AllocatePage(PagedSpace* owner, Executability executable);
2320 OldSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id, Executability executable) argument
[all...]
/external/dbus/dbus/
H A Ddbus-spawn-win.c70 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\
[all...]
H A Ddbus-spawn.c195 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 nam
[all...]
/external/webkit/Source/JavaScriptCore/bytecode/
H A DSamplingTool.h98 ScriptSampleRecord(JSGlobalData& globalData, ScriptExecutable* executable) argument
99 : m_executable(globalData, executable)
/external/bluetooth/glib/gio/
H A Dgwin32appinfo.c62 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
[all...]
H A Dgcontenttype.c280 * 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:__anon764
1194 if (strcmp (parts[i], "executable") == 0)
1195 matchlet->executable = 1;
1547 if (matchlet->executable &&
/external/chromium/chrome/common/
H A Dservice_process_util_unittest.cc378 FilePath* executable) {
382 *executable = mac_os.Append(name);
390 if (file_util::WriteFile(*executable, data, len) != len) {
393 if (chmod(executable->value().c_str(), 0555) != 0) {
375 MakeABundle(const FilePath& dst, const std::string& name, FilePath* bundle_root, FilePath* executable) argument
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubs.cpp1937 FunctionExecutable* executable = function->jsExecutable(); local
1939 JSObject* error = executable->compileForCall(stackFrame.callFrame, callDataScopeChain);
1958 FunctionExecutable* executable = function->jsExecutable(); local
1960 JSObject* error = executable->compileForConstruct(stackFrame.callFrame, callDataScopeChain);
2092 ExecutableBase* executable = callee->executable(); local
2096 if (executable->isHostFunction())
2097 codePtr = executable->generatedJITCodeForCall().addressForCall();
2099 FunctionExecutable* functionExecutable = static_cast<FunctionExecutable*>(executable);
2126 ExecutableBase* executable local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 814 milliseconds

12