Searched refs:info (Results 126 - 150 of 840) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/Support/Unix/
H A DSystem.inc28 struct utsname info;
30 if (uname(&info))
33 return info.release;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/system/
H A DSettings.java133 for (ResolveInfo info : pm.queryBroadcastReceivers(intent, 0)) {
134 packageName = info.activityInfo.packageName;
136 if (packageName != null && isSystemApp(info)) try {
149 private static boolean isSystemApp(ResolveInfo info) { argument
150 return (info.activityInfo != null &&
151 (info.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0);
/frameworks/base/libs/hwui/
H A DRenderNode.cpp230 void RenderNode::prepareTree(TreeInfo& info) { argument
232 LOG_ALWAYS_FATAL_IF(!info.damageAccumulator, "DamageAccumulator missing");
237 prepareTreeImpl(info, functorsNeedLayer);
248 void RenderNode::damageSelf(TreeInfo& info) { argument
251 info.damageAccumulator->dirty(0, 0, properties().getWidth(), properties().getHeight());
255 info.damageAccumulator->dirty(DIRTY_MIN, DIRTY_MIN, DIRTY_MAX, DIRTY_MAX);
260 void RenderNode::prepareLayer(TreeInfo& info, uint32_t dirtyMask) { argument
267 info.damageAccumulator->popTransform();
268 info.damageAccumulator->pushTransform(this);
270 damageSelf(info);
300 pushLayerUpdate(TreeInfo& info) argument
396 prepareTreeImpl(TreeInfo& info, bool functorsNeedLayer) argument
434 pushStagingPropertiesChanges(TreeInfo& info) argument
460 applyLayerPropertiesToLayer(TreeInfo& info) argument
470 syncDisplayList(TreeInfo* info) argument
491 pushStagingDisplayListChanges(TreeInfo& info) argument
502 deleteDisplayList(TreeObserver* observer, TreeInfo* info) argument
512 prepareSubTree(TreeInfo& info, bool functorsNeedLayer, DisplayList* subtree) argument
537 destroyHardwareResources(TreeObserver* observer, TreeInfo* info) argument
554 decParentRefCount(TreeObserver* observer, TreeInfo* info) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DContentProviderRecord.java37 public final ProviderInfo info; field in class:ContentProviderRecord
60 info = _info;
70 info = cpr.info;
79 ContentProviderHolder holder = new ContentProviderHolder(info);
87 return (info.multiprocess || info.processName.equals(app.processName))
88 && uid == app.info.uid;
149 pw.print(info.applicationInfo.packageName);
150 pw.print(" process="); pw.println(info
[all...]
H A DLaunchWarningWindow.java46 icon.setImageDrawable(next.info.applicationInfo.loadIcon(context.getPackageManager()));
49 next.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
51 icon.setImageDrawable(cur.info.applicationInfo.loadIcon(context.getPackageManager()));
54 cur.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
/frameworks/av/media/libstagefright/foundation/
H A DColorUtils.cpp587 const HDRStaticInfo &info, sp<AMessage> &format) {
593 data[0] = info.mID;
596 data[1] = LO_UINT16(info.sType1.mR.x);
597 data[2] = HI_UINT16(info.sType1.mR.x);
598 data[3] = LO_UINT16(info.sType1.mR.y);
599 data[4] = HI_UINT16(info.sType1.mR.y);
602 data[5] = LO_UINT16(info.sType1.mG.x);
603 data[6] = HI_UINT16(info.sType1.mG.x);
604 data[7] = LO_UINT16(info.sType1.mG.y);
605 data[8] = HI_UINT16(info
586 setHDRStaticInfoIntoFormat( const HDRStaticInfo &info, sp<AMessage> &format) argument
644 getHDRStaticInfoFromFormat(const sp<AMessage> &format, HDRStaticInfo *info) argument
[all...]
/frameworks/wilhelm/src/itf/
H A DIStreamInformation.c22 XAMediaContainerInformation * info /* [out] */)
26 if (NULL == info) {
34 // always storing container info at index 0, as per spec
35 *info = thiz->mStreamInfoTable.itemAt(0).containerInfo;
37 // even though the pointer to the media container info is returned, the values aren't set
43 memset(info, 0, sizeof(XAMediaContainerInformation));
95 void * info) /* [out] */
99 if (NULL == info) {
119 *(XAMediaContainerInformation *)info = streamInfo.containerInfo;
122 *(XAAudioStreamInformation *)info
93 IStreamInformation_QueryStreamInformation( XAStreamInformationItf self, XAuint32 streamIndex, void * info) argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DIAccessibilityInteractionConnectionCallback.aidl37 void setFindAccessibilityNodeInfoResult(in AccessibilityNodeInfo info, int interactionId);
/frameworks/base/core/java/com/android/internal/appwidget/
H A DIAppWidgetHost.aidl27 void providerChanged(int appWidgetId, in AppWidgetProviderInfo info);
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolver.h35 * - info, the pointer to overrided info
36 * - existent, if true, the info is existent
37 * - overriden, if true, the info is being overriden.
40 ResolveInfo* info; member in struct:mcld::Resolver::Result
65 pResult.info = NULL;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java60 public void setAdditionalInfo(int info) { argument
62 mAdditionalInfo = info;
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewCompatICS.java50 public static void onInitializeAccessibilityNodeInfo(View v, Object info) { argument
51 v.onInitializeAccessibilityNodeInfo((AccessibilityNodeInfo) info);
/frameworks/native/libs/binder/
H A DIMemory.cpp416 heap_info_t& info = mHeapCache.editValueAt(i); local
419 binder.get(), info.heap.get(),
420 static_cast<BpMemoryHeap*>(info.heap.get())->mSize,
421 static_cast<BpMemoryHeap*>(info.heap.get())->mHeapId,
422 info.count);
423 android_atomic_inc(&info.count);
424 return info.heap;
426 heap_info_t info; local
427 info.heap = interface_cast<IMemoryHeap>(binder);
428 info
480 const heap_info_t& info = mHeapCache.valueAt(i); local
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp470 resolved_result.info = m_Module.getNamePool().createSymbol(
492 assert(resolved_result.info != NULL);
496 LDSymbol* input_sym = LDSymbol::Create(*resolved_result.info);
501 LDSymbol* output_sym = resolved_result.info->outSymbol();
512 output_sym = LDSymbol::Create(*resolved_result.info);
514 resolved_result.info->setSymPtr(output_sym);
566 assert(resolved_result.info != NULL);
572 LDSymbol* input_sym = LDSymbol::Create(*resolved_result.info);
577 resolved_result.info->setInDyn();
581 resolved_result.info
645 ResolveInfo* info = m_Module.getNamePool().findInfo(pName); local
715 ResolveInfo* info = m_Module.getNamePool().findInfo(pName); local
812 ResolveInfo* info = m_Module.getNamePool().findInfo(pName); local
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpv_mp3_huffman.h88 mp3Header *info);
H A Dpvmp3_reorder.cpp42 mp3Header *info, mp3 header info
122 mp3Header *info,
125 int32 sfreq = info->version_x + (info->version_x << 1);
126 sfreq += info->sampling_frequency;
119 pvmp3_reorder(int32 xr[SUBBANDS_NUMBER*FILTERBANK_BANDS], granuleInfo *gr_info, int32 *used_freq_lines, mp3Header *info, int32 Scratch_mem[198]) argument
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DUiAutomationShellWrapper.java75 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo();
77 info.flags &= ~AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS;
79 info.flags |= AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS;
80 mUiAutomation.setServiceInfo(info);
/frameworks/base/core/java/android/content/pm/
H A DLauncherActivityInfo.java48 * @param info ResolveInfo from which to create the LauncherActivityInfo.
51 LauncherActivityInfo(Context context, ActivityInfo info, UserHandle user) { argument
53 mActivityInfo = info;
54 mComponentName = new ComponentName(info.packageName, info.name);
133 * Returns the application info for the appliction this activity belongs to.
/frameworks/base/core/java/android/security/net/config/
H A DManifestConfigSource.java41 ApplicationInfo info = context.getApplicationInfo();
42 mApplicationInfoFlags = info.flags;
43 mTargetSdkVersion = info.targetSdkVersion;
44 mConfigResourceId = info.networkSecurityConfigRes;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DObscureSpeechDelegate.java75 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
76 super.onInitializeAccessibilityNodeInfo(host, info);
80 info.setText(null);
81 info.setContentDescription(
/frameworks/base/tests/CoreTests/android/core/
H A DMiscRegressionTest.java31 Logger.global.info("This has logging Level.INFO, should become INFO");
/frameworks/av/media/libstagefright/rtsp/
H A DARTPSession.cpp81 TrackInfo *info = &mTracks.editItemAt(mTracks.size() - 1); local
82 info->mRTPSocket = rtpSocket;
83 info->mRTCPSocket = rtcpSocket;
91 info->mPacketSource = source;
117 TrackInfo *info = &mTracks.editItemAt(i); local
119 info->mPacketSource->signalEOS(UNKNOWN_ERROR);
121 close(info->mRTPSocket);
122 close(info->mRTCPSocket);
143 TrackInfo *info = &mTracks.editItemAt(trackIndex); local
144 info
186 TrackInfo *info = &mTracks.editItemAt(trackIndex); local
[all...]
/frameworks/base/core/java/android/widget/
H A DSeekBar.java132 public void onInitializeAccessibilityNodeInfoInternal(AccessibilityNodeInfo info) { argument
133 super.onInitializeAccessibilityNodeInfoInternal(info);
136 info.addAction(AccessibilityNodeInfo.AccessibilityAction.ACTION_SET_PROGRESS);
/frameworks/base/libs/hwui/tests/common/
H A DTestScene.h58 Registrar(const TestScene::Info& info) { argument
59 TestScene::registerScene(info);
72 static void registerScene(const Info& info);
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DBuildInfoUtil.java46 final T info = element.getAnnotation(annotationClass);
47 if (info == null) {
52 result = info;

Completed in 739 milliseconds

1234567891011>>