HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 776 - 800 of 1775) sorted by null

<<31323334353637383940>>

  /frameworks/base/libs/hwui/
GradientCache.cpp 148 GradientInfo& info) {
166 info.width = min(width, uint32_t(mMaxTextureSize));
167 info.hasAlpha = hasAlpha;
173 GradientInfo info; local
174 getGradientInfo(colors, count, info);
177 texture->width = info.width;
179 texture->blend = info.hasAlpha;
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
MtpClient.java 286 MtpStorageInfo info = device.getStorageInfo(storageIds[i]); local
287 if (info == null) {
290 storageList.add(info);
358 MtpObjectInfo info = device.getObjectInfo(handles[i]); local
359 if (info == null) {
362 objectList.add(info);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
GestureRecorder.java 79 public String tag, info; field in class:GestureRecorder.Gesture.TagRecord
80 public TagRecord(long when, String tag, String info) {
83 this.info = info;
86 return String.format("{\"type\":\"tag\", \"time\":%d, \"tag\":\"%s\", \"info\":\"%s\"}",
89 this.info
114 public void tag(long when, String tag, String info) {
115 mRecords.add(new TagRecord(when, tag, info));
171 public void tag(long when, String tag, String info) {
177 mCurrentGesture.tag(when, tag, info);
191 tag(SystemClock.uptimeMillis(), tag, info); local
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardActivityLauncher.java 65 CameraWidgetInfo info = new CameraWidgetInfo(); local
80 return info;
87 return info;
92 return info;
94 info.contextPackage = resolved.activityInfo.packageName;
95 info.layoutId = layoutId;
96 return info;
  /frameworks/base/services/java/com/android/server/am/
ContentProviderRecord.java 38 public final ProviderInfo info; field in class:ContentProviderRecord
61 info = _info;
71 info = cpr.info;
80 ContentProviderHolder holder = new ContentProviderHolder(info);
88 return (info.multiprocess || info.processName.equals(app.processName))
89 && uid == app.info.uid;
146 pw.print(info.applicationInfo.packageName);
147 pw.print(" process="); pw.println(info.processName)
    [all...]
  /frameworks/base/services/java/com/android/server/search/
SearchManagerService.java 247 ResolveInfo info = local
251 if (info != null) {
253 info.activityInfo.applicationInfo.packageName,
254 info.activityInfo.name);
  /frameworks/base/services/java/com/android/server/wm/
DimLayer.java 156 final DisplayInfo info = mDisplayContent.getDisplayInfo(); local
159 final int dw = (int) (info.logicalWidth * 1.5);
160 final int dh = (int) (info.logicalHeight * 1.5);
  /frameworks/base/test-runner/src/android/test/
ActivityUnitTestCase.java 138 ActivityInfo info = new ActivityInfo(); local
144 token, mApplication, intent, info, title, mMockParent, id,
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HwTests.java 85 ResolveInfo info = list.get(i); local
86 CharSequence labelSeq = info.loadLabel(pm);
89 : info.activityInfo.name;
99 info.activityInfo.applicationInfo.packageName,
100 info.activityInfo.name));
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationBuilderTest.java 277 // info
278 final CharSequence info = getRadioTag(R.id.group_info); local
279 if (!TextUtils.isEmpty(info)) {
280 b.setContentInfo(info);
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 501 resolved_result.info = m_Module.getNamePool().createSymbol(pName,
522 assert(NULL != resolved_result.info);
526 LDSymbol* input_sym = LDSymbol::Create(*resolved_result.info);
531 LDSymbol* output_sym = resolved_result.info->outSymbol();
543 output_sym = LDSymbol::Create(*resolved_result.info);
545 resolved_result.info->setSymPtr(output_sym);
568 if (ShouldForceLocal(*resolved_result.info, m_Config))
577 !ShouldForceLocal(*resolved_result.info, m_Config)) {
578 // If the old info and the new info are both forcefully local, the
694 ResolveInfo* info = m_Module.getNamePool().findInfo(pName); local
759 ResolveInfo* info = m_Module.getNamePool().findInfo(pName); local
852 ResolveInfo* info = m_Module.getNamePool().findInfo(pName); local
    [all...]
  /frameworks/compile/mclinker/lib/LD/
GNUArchiveReader.cpp 336 const ResolveInfo* info = m_Module.getNamePool().findInfo(pSymName); local
337 if (NULL != info) {
338 if (!info->isUndef())
340 if (info->isWeak())
  /frameworks/native/cmds/flatland/
GLHelper.cpp 227 DisplayInfo info; local
228 status_t err = mSurfaceComposerClient->getDisplayInfo(dpy, &info);
234 float scaleX = float(info.w) / float(w);
235 float scaleY = float(info.h) / float(h);
  /frameworks/native/libs/gui/
ISurfaceComposer.cpp 215 virtual status_t getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info)
221 memcpy(info, reply.readInplace(sizeof(DisplayInfo)), sizeof(DisplayInfo));
324 DisplayInfo info; local
326 status_t result = getDisplayInfo(display, &info);
327 memcpy(reply->writeInplace(sizeof(DisplayInfo)), &info, sizeof(DisplayInfo));
  /frameworks/rs/cpu_ref/
rsCpuScript.cpp 163 ALOGW("bcc: FAILS to synchronize the RS info file to the disk");
174 const bcc::RSInfo *info = &mExecutable->getInfo(); local
175 if (info->getExportVarNames().size()) {
176 mBoundAllocs = new Allocation *[info->getExportVarNames().size()];
177 memset(mBoundAllocs, 0, sizeof(void *) * info->getExportVarNames().size());
234 const char *rsInfo = (const char *) dlsym(mScriptSO, ".rs.info");
236 //ALOGE("Found .rs.info(): %p - %s", rsInfo, rsInfo);
431 const bcc::RSInfo *info = &mExecutable->getInfo(); local
433 // Copy info over to runtime
434 script->mHal.info.exportedFunctionCount = info->getExportFuncNames().size()
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarActivityDelegate.java 157 ActivityInfo info = pm.getActivityInfo(mActivity.getComponentName(), local
161 if (info.metaData != null) {
162 uiOptions = info.metaData.getString(METADATA_UI_OPTIONS);
  /frameworks/testing/app-tests/AppLaunchTest/src/com/android/applaunchtest/
AppLaunchTest.java 142 err.info.processName, app.activityInfo.packageName));
167 final String errPkg = err.info.processName;
204 newList.add(err.info);
252 public final ProcessErrorStateInfo info; field in class:AppLaunchTest.ProcessError
255 info = newInfo;
265 for (ProcessErrorStateInfo info : in) {
266 out.add(new ProcessError(info));
287 return (info.condition == peOther.info.condition)
288 && strEquals(info.longMsg, peOther.info.longMsg
    [all...]
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiAutomatorBridge.java 78 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo(); local
80 info.flags &= ~AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS;
82 info.flags |= AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS;
83 mUiAutomation.setServiceInfo(info);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_linux.c 196 struct ethtool_drvinfo info; local
203 memset(&info, 0, sizeof(info));
204 info.cmd = ETHTOOL_GDRVINFO;
205 strcpy(info.driver, "?");
206 strcat(info.driver, type);
207 ifr.ifr_data = (caddr_t)&info;
217 strcpy(buf, info.driver);
  /hardware/msm7k/libgralloc-qsd8k/
framebuffer.cpp 86 m->info.reserved[0] = 0x54445055; // "UPDT";
87 m->info.reserved[1] = (uint16_t)l | ((uint32_t)t << 16);
88 m->info.reserved[2] = (uint16_t)(l+w) | ((uint32_t)(t+h) << 16);
112 0, 0, m->info.xres, m->info.yres, NULL);
115 m->info.activate = FB_ACTIVATE_VBL;
116 m->info.yoffset = offset / m->finfo.line_length;
117 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) {
130 0, 0, m->info.xres, m->info.yres
191 struct fb_var_screeninfo info; local
    [all...]
gralloc_priv.h 73 struct fb_var_screeninfo info; member in struct:private_module_t
  /hardware/qcom/audio/legacy/alsa_sound/
ALSAMixer.cpp 174 mixer_info_t *info = mixerMasterProp[i].mInfo = new mixer_info_t; local
177 info->name,
192 if (info->elem == NULL &&
193 strcmp(elementName, info->name) == 0 &&
196 info->elem = elem;
197 getVolumeRange[i] (elem, &info->min, &info->max);
198 info->volume = info->max;
199 setVol[i] (elem, info->volume)
211 mixer_info_t *info = mixerProp[j][i].mInfo = new mixer_info_t; local
269 mixer_info_t *info = mixerMasterProp[SND_PCM_STREAM_PLAYBACK].mInfo; local
288 mixer_info_t *info = mixerMasterProp[SND_PCM_STREAM_CAPTURE].mInfo; local
310 mixer_info_t *info = mixerProp[j][SND_PCM_STREAM_PLAYBACK].mInfo; local
333 mixer_info_t *info = mixerProp[j][SND_PCM_STREAM_CAPTURE].mInfo; local
356 mixer_info_t *info = mixerProp[j][SND_PCM_STREAM_CAPTURE].mInfo; local
382 mixer_info_t *info = mixerProp[j][SND_PCM_STREAM_CAPTURE].mInfo; local
397 mixer_info_t *info = mixerProp[j][SND_PCM_STREAM_PLAYBACK].mInfo; local
423 mixer_info_t *info = mixerProp[j][SND_PCM_STREAM_PLAYBACK].mInfo; local
    [all...]
  /hardware/qcom/display/libgralloc/
framebuffer.cpp 92 m->info.activate = FB_ACTIVATE_VBL;
93 m->info.yoffset = offset / m->finfo.line_length;
94 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) {
140 struct fb_var_screeninfo info; local
141 if (ioctl(fd, FBIOGET_VSCREENINFO, &info) == -1)
144 info.reserved[0] = 0;
145 info.reserved[1] = 0;
146 info.reserved[2] = 0;
147 info.xoffset = 0;
148 info.yoffset = 0
    [all...]
  /hardware/qcom/media/mm-video/vidc/common/src/
extra_data_handler.cpp 237 DEBUG_PRINT_ERROR("unknown error in slice info extradata");
354 OMX_U32 i, sym_len, sufix_len, info; local
363 info = symbol + 1 - (1 << i);
365 info = sufix_len | (info & (sufix_len - 1));
366 e_u(info, sym_len);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/Generic/
TrustZoneDevice.cpp 310 uint32_t status, info; local
311 // read additional info about exception-point and print
313 ret = pMcKMod->fcInfo(1, &status, &info);
314 LOG_W("MC_HALT: flags : 0x%8x", info);
315 ret = pMcKMod->fcInfo(2, &status, &info);
316 LOG_W("MC_HALT: haltCode : 0x%8x", info);
317 ret = pMcKMod->fcInfo(3, &status, &info);
318 LOG_W("MC_HALT: haltIp : 0x%8x", info);
319 ret = pMcKMod->fcInfo(4, &status, &info);
320 LOG_W("MC_HALT: faultRec.cnt : 0x%8x", info);
    [all...]

Completed in 1251 milliseconds

<<31323334353637383940>>