/external/jmdns/src/javax/jmdns/impl/ |
JmDNSImpl.java | 432 for (ServiceInfo info : serviceInfos) { 434 this.registerService(new ServiceInfoImpl(info)); 681 * Returns the local host info 683 * @return local host info 735 final ServiceInfoImpl info = this.resolveServiceInfo(type, name, "", persistent); local 736 this.waitForInfoData(info, timeout); 737 return (info.hasData() ? info : null); 749 final ServiceInfoImpl info = this.getServiceInfoFromCache(type, name, subtype, persistent); local 750 // We still run the resolver to do the dispatch but if the info is already there it will quit immediatel 758 ServiceInfoImpl info = new ServiceInfoImpl(type, name, subtype, 0, 0, 0, persistent, (byte[]) null); local 863 final ServiceInfoImpl info = this.resolveServiceInfo(type, name, "", persistent); local 989 final ServiceInfoImpl info = (ServiceInfoImpl) infoAbstract; local 1028 final ServiceInfoImpl info = (ServiceInfoImpl) _services.get(infoAbstract.getKey()); local 1035 _services.remove(info.getKey(), info); local 1054 ServiceInfoImpl info = (ServiceInfoImpl) _services.get(name); local 1065 ServiceInfoImpl info = (ServiceInfoImpl) _services.get(name); local 1233 ServiceInfo info = record.getServiceInfo(); local 1268 ServiceInfo info = this.getServiceInfoFromCache(event.getType(), event.getName(), "", false); local 2041 ServiceInfo info = event.getInfo(); local 2043 _infos.put(event.getName(), info); local 2048 _infos.put(event.getName(), info); local [all...] |
/prebuilts/devtools/tools/lib/ |
sdkmanager.jar | |
/development/samples/training/NavigationDrawer/libs/ |
android-support-v4.jar | |
/developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetect/libs/ |
android-support-v4.jar | |
/development/samples/training/ContactsList/libs/ |
android-support-v4.jar | |
/development/samples/training/EffectiveNavigation/libs/ |
android-support-v4.jar | |
/development/samples/training/InteractiveChart/libs/ |
android-support-v4.jar | |
/development/samples/training/bitmapfun/libs/ |
android-support-v4.jar | |
/external/robolectric/lib/main/ |
android-support-v4.jar | |
/external/javassist/src/main/javassist/bytecode/ |
ConstPool.java | 666 private int addItem(ConstInfo info) { 667 items.addElement(info); 686 ConstInfo info = getItem(n); 687 return info.copy(this, dest, classnames); 728 ClassInfo info = (ClassInfo)classes.get(qname); local 729 if (info != null) 730 return info.index; 733 info = new ClassInfo(utf8, numOfItems); 734 classes.put(qname, info); 735 return addItem(info); 963 Utf8Info info = (Utf8Info)strings.get(utf8); local 1042 ConstInfo info = items.elementAt(i++); local 1051 ConstInfo info; local [all...] |
/frameworks/base/core/java/android/app/ |
ApplicationThreadNative.java | 134 ActivityInfo info = ActivityInfo.CREATOR.createFromParcel(data); local 146 scheduleLaunchActivity(intent, b, ident, info, curConfig, compatInfo, state, ri, pi, 190 ActivityInfo info = ActivityInfo.CREATOR.createFromParcel(data); local 197 scheduleReceiver(intent, info, compatInfo, resultCode, resultData, 205 ServiceInfo info = ServiceInfo.CREATOR.createFromParcel(data); local 207 scheduleCreateService(token, info, compatInfo); 257 ApplicationInfo info = local 281 bindApplication(packageName, info, 697 ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo, 707 info.writeToParcel(data, 0) 1173 Debug.MemoryInfo info = new Debug.MemoryInfo(); local [all...] |
/packages/apps/Settings/src/com/android/settings/wifi/ |
WifiSettings.java | 265 final NetworkInfo info = connectivity.getActiveNetworkInfo(); 266 isConnected = (info != null) && info.isConnected(); 379 NetworkInfo info = connectivity.getNetworkInfo( local 381 changeNextButtonState(info.isConnected()); 556 public void onCreateContextMenu(ContextMenu menu, View view, ContextMenuInfo info) { 557 if (info instanceof AdapterContextMenuInfo) { 559 ((AdapterContextMenuInfo) info).position); [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
BinaryDictionaryFileDumper.java | 76 // The path fragment to append after the client ID for dictionary info requests. 443 final DictionaryInfo info = dictionaryList.get(i); local 444 client.insert(Uri.withAppendedPath(dictionaryContentUriBase, info.mId), 445 info.toContentValues());
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadInfo.java | 65 final DownloadInfo info = new DownloadInfo( local 67 updateFromDatabase(info); 68 readRequestHeaders(info); 69 return info; 72 public void updateFromDatabase(DownloadInfo info) { 73 info.mId = getLong(Downloads.Impl._ID); 74 info.mUri = getString(Downloads.Impl.COLUMN_URI); 75 info.mNoIntegrity = getInt(Downloads.Impl.COLUMN_NO_INTEGRITY) == 1; 76 info.mHint = getString(Downloads.Impl.COLUMN_FILE_NAME_HINT); 77 info.mFileName = getString(Downloads.Impl._DATA) 366 final NetworkInfo info = mSystemFacade.getActiveNetworkInfo(mUid); local [all...] |
/dalvik/vm/compiler/codegen/ |
RallocUtil.cpp | 100 ALOGE("Tried to get info on a non-existant temp: r%d",reg); 126 RegisterInfo *info = getRegInfo(cUnit, reg); local 127 if (info->live && info->dirty) { 128 info->dirty = false; 130 dvmCompilerS2VReg(cUnit, info->sReg) << 2, 580 static void flushAllRegsBody(CompilationUnit *cUnit, RegisterInfo *info, 585 if (info[i].live && info[i].dirty) { 586 if (info[i].pair) 619 RegisterInfo *info = getRegInfo(cUnit, reg); local 643 RegisterInfo *info = getRegInfo(cUnit, reg); local 649 RegisterInfo *info = getRegInfo(cUnit, reg); local 655 RegisterInfo *info = getRegInfo(cUnit, reg); local [all...] |
/dalvik/vm/compiler/codegen/mips/ |
RallocUtil.cpp | 102 ALOGE("Tried to get info on a non-existant temp: r%d",reg); 128 RegisterInfo *info = getRegInfo(cUnit, reg); local 129 if (info->live && info->dirty) { 130 info->dirty = false; 132 dvmCompilerS2VReg(cUnit, info->sReg) << 2, 652 static void flushAllRegsBody(CompilationUnit *cUnit, RegisterInfo *info, 657 if (info[i].live && info[i].dirty) { 658 if (info[i].pair) 691 RegisterInfo *info = getRegInfo(cUnit, reg); local 715 RegisterInfo *info = getRegInfo(cUnit, reg); local 721 RegisterInfo *info = getRegInfo(cUnit, reg); local 727 RegisterInfo *info = getRegInfo(cUnit, reg); local [all...] |
/development/apps/Development/src/com/android/development/ |
PackageSummary.java | 87 PackageInfo info = null; local 89 info = pm.getPackageInfo(mPackageName, 97 if (info != null) { 98 mPackage.setText(info.packageName); 101 if (info.applicationInfo != null) { 103 pm.getApplicationIcon(info.applicationInfo)); 104 label = info.applicationInfo.nonLocalizedLabel; 105 appClass = info.applicationInfo.className; 106 if (info.applicationInfo.enabled) { 109 if ((info.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) == 0) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/ |
ClockBackService.java | 475 AccessibilityServiceInfo info = new AccessibilityServiceInfo(); local 477 info.eventTypes = AccessibilityEvent.TYPES_ALL_MASK; 479 info.feedbackType = feedbackType; 481 info.notificationTimeout = EVENT_NOTIFICATION_TIMEOUT_MILLIS; 483 info.packageNames = PACKAGE_NAMES; 484 setServiceInfo(info);
|
/development/samples/Home/src/com/example/android/home/ |
ApplicationsStackLayout.java | 251 final ApplicationInfo info = applications.get(i); local 252 final View view = createApplicationIcon(mInflater, this, info); 303 ViewGroup group, ApplicationInfo info) { 307 info.icon.setBounds(0, 0, mIconSize, mIconSize); 308 textView.setCompoundDrawables(null, info.icon, null, null); 309 textView.setText(info.title); 311 textView.setTag(info.intent);
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
SimpleLog.java | 41 * Must be one of ("trace", "debug", "info", "warn", "error", or "fatal"). 42 * If not specified, defaults to "info". </li> 45 * Must be one of ("trace", "debug", "info", "warn", "error", or "fatal"). 112 /** "Info" level logging. */ 205 // IMHO it should be lower, but at least info ( costin ). 227 } else if("info".equalsIgnoreCase(lvl)) { 291 case SimpleLog.LOG_LEVEL_INFO: buf.append("[INFO] "); break; 429 * @see org.apache.commons.logging.Log#info(Object) 431 public final void info(Object message) { method in class:SimpleLog 445 * @see org.apache.commons.logging.Log#info(Object, Throwable 447 public final void info(Object message, Throwable t) { method in class:SimpleLog [all...] |
/external/bluetooth/bluedroid/bta/include/ |
bta_fs_co.h | 140 /* a data type to keep an array of ssn/file offset - the info can be saved to NV */ 153 UINT8 info; /* info for BTA on the client side */ member in struct:__anon2671 251 ** info - the BTA specific information (like last active operation). 261 UINT32 *p_timeout, UINT32 *p_offset, UINT8 info, UINT8 app_id);
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
CMSSignedData.java | 254 SignerInfo info = SignerInfo.getInstance(s.getObjectAt(i)); local 259 signerInfos.add(new SignerInformation(info, contentType, signedContent, null)); 264 byte[] hash = (obj instanceof String) ? (byte[])hashes.get(info.getDigestAlgorithm().getAlgorithm().getId()) : (byte[])hashes.get(info.getDigestAlgorithm().getAlgorithm()); 266 signerInfos.add(new SignerInformation(info, contentType, null, hash)); 518 * encapsulated content info structure carried in the signed data.
|
/external/chromium/chrome/browser/autofill/ |
autofill_profile.cc | 219 FormGroupList info = FormGroups(); local 220 for (FormGroupList::const_iterator it = info.begin(); it != info.end(); ++it) 226 FormGroupList info = FormGroups(); local 227 for (FormGroupList::const_iterator it = info.begin(); it != info.end(); ++it)
|
/external/chromium/chrome/browser/download/ |
download_manager_unittest.cc | 64 void AttachDownloadItem(DownloadCreateInfo* info) { 65 download_manager_->AttachDownloadItem(info); 202 MockDownloadFile(DownloadCreateInfo* info, DownloadManager* manager) 203 : DownloadFile(info, manager), renamed_count_(0) { } 307 DownloadCreateInfo* info = new DownloadCreateInfo; local 308 info->download_id = static_cast<int>(i); 309 info->prompt_user_for_save_location = kStartDownloadCases[i].save_as; 310 info->url_chain.push_back(GURL(kStartDownloadCases[i].url)); 311 info->mime_type = kStartDownloadCases[i].mime_type; 312 download_manager_->CreateDownloadItem(info); [all...] |
/external/chromium/chrome/browser/extensions/ |
extensions_ui.cc | 578 static SelectFileDialog::FileTypeInfo info; local 592 info.extensions.push_back(std::vector<FilePath::StringType>()); 593 info.extensions.front().push_back(FILE_PATH_LITERAL("pem")); 594 info.extension_description_overrides.push_back( 597 info.include_all_files = true; 605 load_extension_dialog_->SelectFile(type, select_title, FilePath(), &info, [all...] |