/frameworks/base/core/java/android/database/sqlite/ |
SQLiteProgram.java | 57 SQLiteStatementInfo info = new SQLiteStatementInfo(); local 60 cancellationSignalForPrepare, info); 61 mReadOnly = info.readOnly; 62 mColumnNames = info.columnNames; 63 mNumParameters = info.numParameters;
|
/frameworks/base/core/java/android/net/ |
NetworkIdentity.java | 166 final WifiInfo info = wifi.getConnectionInfo(); local 167 networkId = info != null ? info.getSSID() : null;
|
/frameworks/base/core/java/android/printservice/ |
PrintJob.java | 64 * <strong>Node:</strong>The returned info object is a snapshot of the 66 * info object that reflects the current print job state. 69 * @return The print job info. 76 PrintJobInfo info = null; local 78 info = mPrintServiceClient.getPrintJobInfo(mCachedInfo.getId()); 80 Log.e(LOG_TAG, "Couldn't get info for job: " + mCachedInfo.getId(), re); 82 if (info != null) { 83 mCachedInfo = info; 215 PrintJobInfo info = getInfo(); local 216 final int state = info.getState() [all...] |
/frameworks/base/core/java/android/widget/ |
HeaderViewListAdapter.java | 41 // Used as a placeholder in case the provided info views are indeed null. 87 for (ListView.FixedViewInfo info : infos) { 88 if (!info.isSelectable) { 98 ListView.FixedViewInfo info = mHeaderViewInfos.get(i); local 99 if (info.view == v) { 115 ListView.FixedViewInfo info = mFooterViewInfos.get(i); local 116 if (info.view == v) {
|
/frameworks/base/core/java/com/android/internal/net/ |
VpnConfig.java | 82 RouteInfo info = new RouteInfo(new LinkAddress local 84 this.routes.add(info);
|
/frameworks/base/core/jni/ |
android_util_Log.cpp | 39 jint info; member in struct:android::levels_t 51 case 'I': return levels.info; 57 return levels.info; 157 levels.info = env->GetStaticIntField(clazz, env->GetStaticFieldID(clazz, "INFO", "I"));
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/ |
CameraBinderTest.java | 80 CameraInfo info = new CameraInfo(); local 81 info.info.facing = -1; 82 info.info.orientation = -1; 85 "Camera service returned info for camera " + cameraId, 86 mUtils.getCameraService().getCameraInfo(cameraId, info) == 88 assertTrue("Facing was not set for camera " + cameraId, info.info.facing != -1); 90 info.info.orientation != -1) [all...] |
/frameworks/base/services/java/com/android/server/ |
RecognitionManagerService.java | 92 ServiceInfo info = null; local 96 info = mIPm.getServiceInfo(comp, 0, userHandle); 100 if (info == null) {
|
/frameworks/base/services/java/com/android/server/display/ |
DisplayDevice.java | 89 * @return The display device info, which should be treated as immutable by the caller. 90 * The display device should allocate a new display device info object whenever 195 DisplayDeviceInfo info = getDisplayDeviceInfoLocked(); local 196 viewport.deviceWidth = isRotated ? info.height : info.width; 197 viewport.deviceHeight = isRotated ? info.width : info.height; 202 * Does not need to dump the display device info because that is already dumped elsewhere.
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
TextureViewActivity.java | 119 Camera.CameraInfo info = new Camera.CameraInfo(); local 121 Camera.getCameraInfo(i, info); 122 if (info.facing == Camera.CameraInfo.CAMERA_FACING_BACK) break; 143 return (info.orientation - degrees + 360) % 360;
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
Main.java | 84 log.info("Output: %1$s", osDestJar); 86 log.info("Input : %1$s", path); 90 CreateInfo info = new CreateInfo(); local 91 Set<String> excludeClasses = getExcludedClasses(info); 92 AsmGenerator agen = new AsmGenerator(log, osDestJar, info); 142 log.info("- Input JAR : %1$s", path); 157 private static Set<String> getExcludedClasses(CreateInfo info) { 158 String[] refactoredClasses = info.getJavaPkgClasses();
|
/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 78 // Turn off verbose so that we only generate the .info file. 118 FILE *info = fopen(infoFile.c_str(), "w"); local 119 if (!info) { 120 fprintf(stderr, "Could not open info file %s\n", infoFile.c_str()); 124 fprintf(info, "exportVarCount: %u\n", ME->getExportVarCount()); 127 fprintf(info, "%s\n", varNameList[i]); 130 fprintf(info, "exportFuncCount: %u\n", ME->getExportFuncCount()); 133 fprintf(info, "%s\n", funcNameList[i]); 136 fprintf(info, "exportForEachCount: %u\n", 141 fprintf(info, "%u - %s\n", sigList[i], nameList[i]) [all...] |
/frameworks/native/services/surfaceflinger/tests/ |
Transaction_test.cpp | 99 DisplayInfo info; local 100 SurfaceComposerClient::getDisplayInfo(display, &info); 102 ssize_t displayWidth = info.w; 103 ssize_t displayHeight = info.h;
|
/frameworks/rs/ |
rsScript.h | 80 DriverInfo info; member in struct:android::renderscript::Script::Hal
|
/frameworks/support/v4/java/android/support/v4/app/ |
NavUtils.java | 45 String getParentActivityName(Context context, ActivityInfo info); 84 public String getParentActivityName(Context context, ActivityInfo info) { 85 if (info.metaData == null) return null; 86 String parentActivity = info.metaData.getString(PARENT_ACTIVITY); 123 public String getParentActivityName(Context context, ActivityInfo info) { 124 String result = NavUtilsJB.getParentActivityName(info); 126 result = super.getParentActivityName(context, info); 298 ActivityInfo info = pm.getActivityInfo(componentName, PackageManager.GET_META_DATA); local 299 String parentActivity = IMPL.getParentActivityName(context, info);
|
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/core/ |
UiAutomationShellWrapper.java | 75 AccessibilityServiceInfo info = mUiAutomation.getServiceInfo(); local 77 info.flags &= ~AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS; 79 info.flags |= AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS; 80 mUiAutomation.setServiceInfo(info);
|
/hardware/libhardware/modules/gralloc/ |
framebuffer.cpp | 79 m->info.reserved[0] = 0x54445055; // "UPDT"; 80 m->info.reserved[1] = (uint16_t)l | ((uint32_t)t << 16); 81 m->info.reserved[2] = (uint16_t)(l+w) | ((uint32_t)(t+h) << 16); 98 m->info.activate = FB_ACTIVATE_VBL; 99 m->info.yoffset = offset / m->finfo.line_length; 100 if (ioctl(m->framebuffer->fd, FBIOPUT_VSCREENINFO, &m->info) == -1) { 116 0, 0, m->info.xres, m->info.yres, 121 0, 0, m->info.xres, m->info.yres 163 struct fb_var_screeninfo info; local [all...] |
gralloc_priv.h | 49 struct fb_var_screeninfo info; member in struct:private_module_t
|
/hardware/qcom/audio/legacy/alsa_sound/ |
ALSAStreamOps.cpp | 262 EDID_AUDIO_INFO info = { 0 }; local 265 if (AudioUtil::getHDMIAudioSinkCaps(&info)) { 266 for (int i = 0; i < info.nAudioBlocks && i < MAX_EDID_BLOCKS; i++) { 268 switch (info.AudioBlocksArray[i].nChannels) { 278 ALOGD("Unsupported number of channels %d", info.AudioBlocksArray[i].nChannels);
|
/hardware/qcom/display/msm8960/libcopybit/ |
software_converter.cpp | 139 copyInfo& info) 147 int width = info.width; 148 int height = info.height; 155 src += info.src_stride; 156 dst += info.dst_stride; 160 src = (unsigned char*)(src_base + info.src_plane1_offset); 161 dst = (unsigned char*)(dst_base + info.dst_plane1_offset); 165 memcpy(dst, src, info.src_stride); 166 src += info.src_stride; 167 dst += info.dst_stride 193 copyInfo info; local 238 copyInfo info; local [all...] |
/hardware/qcom/display/msm8974/libcopybit/ |
software_converter.cpp | 139 copyInfo& info) 147 int width = info.width; 148 int height = info.height; 155 src += info.src_stride; 156 dst += info.dst_stride; 160 src = (unsigned char*)(src_base + info.src_plane1_offset); 161 dst = (unsigned char*)(dst_base + info.dst_plane1_offset); 165 memcpy(dst, src, info.src_stride); 166 src += info.src_stride; 167 dst += info.dst_stride 193 copyInfo info; local 238 copyInfo info; local [all...] |
/hardware/qcom/display/msm8x26/libcopybit/ |
software_converter.cpp | 139 copyInfo& info) 147 int width = info.width; 148 int height = info.height; 155 src += info.src_stride; 156 dst += info.dst_stride; 160 src = (unsigned char*)(src_base + info.src_plane1_offset); 161 dst = (unsigned char*)(dst_base + info.dst_plane1_offset); 165 memcpy(dst, src, info.src_stride); 166 src += info.src_stride; 167 dst += info.dst_stride 193 copyInfo info; local 238 copyInfo info; local [all...] |
/hardware/samsung_slsi/exynos5/gralloc/ |
framebuffer.cpp | 174 ALOGE("Fail to get FB Screen Info"); 178 struct fb_var_screeninfo info; local 179 if (ioctl(fd, FBIOGET_VSCREENINFO, &info) == -1) { 180 ALOGE("First, Fail to get FB VScreen Info"); 189 float xdpi = (module->xres * 25.4f) / info.width; 190 float ydpi = (module->yres * 25.4f) / info.height; 198 finfo.id, module->xres, module->yres, info.width, xdpi, info.height,
|
/libcore/libart/src/main/java/java/lang/reflect/ |
Constructor.java | 136 GenericInfo info = getMethodOrConstructorGenericInfo(); local 137 return (TypeVariable<Constructor<T>>[]) info.formalTypeParameters.clone();
|
/libcore/luni/src/main/java/java/lang/ |
StringToReal.java | 263 StringExponentPair info = initialParse(s, length, true); local 264 if (info.infinity || info.zero) { 265 return info.specialValue(); 267 double result = parseDblImpl(info.s, (int) info.e); 271 return info.negative ? -result : result; 304 StringExponentPair info = initialParse(s, length, false); local 305 if (info.infinity || info.zero) [all...] |