Home
last modified time | relevance | path

Searched refs:sd (Results 1 – 12 of 12) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
DELFObjectReader.cpp158 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
159 if (!m_pELFReader->readRegularSection(pInput, *sd)) in readSections()
164 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
165 if (!m_pELFReader->readRegularSection(pInput, *sd)) in readSections()
195 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
196 if (!m_pELFReader->readRegularSection(pInput, *sd)) in readSections()
205 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
206 if (!m_pELFReader->readRegularSection(pInput, *sd)) { in readSections()
235 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
236 if (!m_Backend.readSection(pInput, *sd)) { in readSections()
DBranchIsland.cpp120 SectionData* sd = m_Entry.getParent(); in addStub() local
128 align_frag->setParent(sd); in addStub()
129 sd->getFragmentList().insert(end(), align_frag); in addStub()
134 pStub.setParent(sd); in addStub()
135 sd->getFragmentList().insert(end(), &pStub); in addStub()
DELFObjectWriter.cpp380 const SectionData* sd = NULL; in emitSectionData() local
387 sd = pSection.getEhFrame()->getSectionData(); in emitSectionData()
391 sd = pSection.getSectionData(); in emitSectionData()
394 emitSectionData(*sd, pRegion); in emitSectionData()
/frameworks/base/core/java/android/app/
DLoadedApk.java562 LoadedApk.ServiceDispatcher sd = smap.valueAt(i); in removeContextRegistrations() local
565 + sd.getServiceConnection() + " that was originally bound here"); in removeContextRegistrations()
566 leak.setStackTrace(sd.getLocation().getStackTrace()); in removeContextRegistrations()
573 sd.getIServiceConnection()); in removeContextRegistrations()
577 sd.doForget(); in removeContextRegistrations()
858 LoadedApk.ServiceDispatcher sd = null; in getServiceDispatcher() local
861 sd = map.get(c); in getServiceDispatcher()
863 if (sd == null) { in getServiceDispatcher()
864 sd = new ServiceDispatcher(c, context, handler, flags); in getServiceDispatcher()
869 map.put(c, sd); in getServiceDispatcher()
[all …]
DContextImpl.java1564 IServiceConnection sd; in bindServiceCommon() local
1569 sd = mPackageInfo.getServiceDispatcher(conn, getOuterContext(), in bindServiceCommon()
1586 sd, flags, user.getIdentifier()); in bindServiceCommon()
1603 IServiceConnection sd = mPackageInfo.forgetServiceDispatcher( in unbindService() local
1606 ActivityManagerNative.getDefault().unbindService(sd); in unbindService()
/frameworks/native/opengl/libagl/
Dprimitives.cpp902 GLfixed sd = dot4(equation.v, s->eye.v); in clip_triangle() local
907 if (sd >= 0) { in clip_triangle()
914 const GLfixed t = clipDivide(sd, sd-pd); in clip_triangle()
925 const GLfixed t = clipDivide(pd, pd-sd); in clip_triangle()
939 sd = pd; in clip_triangle()
967 GLfixed sd = frustumPlaneDist(plane, s->clip); in clip_triangle() local
972 if (sd >= 0) { in clip_triangle()
979 const GLfixed t = clipDivide(sd, sd-pd); in clip_triangle()
990 const GLfixed t = clipDivide(pd, pd-sd); in clip_triangle()
1004 sd = pd; in clip_triangle()
[all …]
/frameworks/base/docs/html/training/search/
Dbackward-compat.jd16 <li><a href="{@docRoot}training/search/backward-compat.html#provide-sd">Provide the Search
42 <h2 id="provide-sd">Provide the Search Dialog for Older Devices</h2>
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonLDBackend.cpp692 SectionData *sd = NULL; in mergeSection() local
694 sd = IRBuilder::CreateSectionData(*m_psdata); in mergeSection()
695 m_psdata->setSectionData(sd); in mergeSection()
697 sd = m_psdata->getSectionData(); in mergeSection()
698 MoveSectionDataAndSort(*pInputSection.getSectionData(), *sd); in mergeSection()
/frameworks/compile/mclinker/tools/llvm-mcld/
Dllvm-mcld.cpp1099 cl::list<std::string>::iterator sd; in ProcessLinkerOptionsFromCommand() local
1101 for (sd=ArgSearchDirList.begin(); sd!=sdEnd; ++sd) { in ProcessLinkerOptionsFromCommand()
1102 if (!pScript.directories().insert(*sd)) { in ProcessLinkerOptionsFromCommand()
1105 << *sd in ProcessLinkerOptionsFromCommand()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMLDBackend.cpp412 SectionData* sd = IRBuilder::CreateSectionData(*m_pAttributes); in mergeSection() local
413 ObjectBuilder::MoveSectionData(*pSection.getSectionData(), *sd); in mergeSection()
/frameworks/base/services/java/com/android/server/wm/
DWindowManagerService.java7161 final StartingData sd = wtoken.startingData; in handleMessage() local
7163 if (sd == null) { in handleMessage()
7169 + wtoken + ": pkg=" + sd.pkg); in handleMessage()
7174 wtoken.token, sd.pkg, sd.theme, sd.compatInfo, in handleMessage()
7175 sd.nonLocalizedLabel, sd.labelRes, sd.icon, sd.logo, sd.windowFlags); in handleMessage()
/frameworks/av/media/libstagefright/
DMPEG4Extractor.cpp938 uint32_t sd; in parseChunk() local
940 if (!mDataSource->getUInt32(entriesoffset, &sd) || in parseChunk()
944 segment_duration = sd; in parseChunk()