HomeSort by relevance Sort by last modified time
    Searched defs:info (Results 951 - 975 of 2856) sorted by null

<<31323334353637383940>>

  /libcore/luni/src/main/java/java/security/
Identity.java 39 private String info = "no additional info"; field in class:Identity
207 s += " " + info;
266 * @param info
269 public void setInfo(String info) {
270 this.info = info;
279 return info;
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
JarUtils.java 70 ContentInfo info = (ContentInfo)ContentInfo.ASN1.decode(bis); local
71 SignedData signedData = info.getSignedData();
  /libcore/luni/src/test/java/libcore/sqlite/
OldJDBCDriverTest.java 93 DriverPropertyInfo[] info = null; local
95 info = jDriver.getPropertyInfo(getConnectionURL(), null);
96 assertNotNull(info);
97 assertTrue(info.length > 0);
102 assertNotNull(info);
  /ndk/sources/android/support/tests/minitest/
minitest.cc 170 TestInfo* info = reinterpret_cast<TestInfo*>(::malloc(sizeof(*info))); local
172 info->test_name = test_name;
173 info->case_name = case_name;
174 info->test_function = test_function;
176 *g_test_infos_tail = info;
177 g_test_infos_tail = &info->next;
184 TestInfo* info = g_test_infos; local
187 for ( ; info != NULL; info = info->next)
    [all...]
  /ndk/sources/host-tools/ndk-stack/elff/
elf_file.cc 28 /* Tags to parse when collecting info about routines. */
195 Dwarf_AddressInfo info; local
196 info.die_obj = cu->get_leaf_die_for_address(address);
197 if (info.die_obj != NULL) {
199 if (cu->get_pc_address_file_info(address, &info)) {
201 address_info->file_name = info.file_name;
202 address_info->dir_name = info.dir_name;
203 address_info->line_number = info.line_number;
212 Dwarf_Tag tag = info.die_obj->get_tag();
216 info.die_obj = info.die_obj->parent_die()
    [all...]
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_pan.cpp 35 #define info(fmt, ...) ALOGI ("%s(L%d): " fmt,__FUNCTION__, __LINE__, ## __VA_ARGS__) macro
105 info("succeeds");
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppBatch.java 103 * @param info, BluetoothOppShareInfo
105 public BluetoothOppBatch(Context context, BluetoothOppShareInfo info) {
109 mTimestamp = info.mTimestamp;
110 mDirection = info.mDirection;
111 mDestination = adapter.getRemoteDevice(info.mDestination);
113 mShares.add(info);
115 if (V) Log.v(TAG, "New Batch created for info " + info.mId);
125 public void addShare(BluetoothOppShareInfo info) {
126 mShares.add(info);
166 BluetoothOppShareInfo info = mShares.get(i); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventActivity.java 120 EventInfo info = new EventInfo(); local
141 info.endTime = new Time();
143 info.endTime.timezone = Time.TIMEZONE_UTC;
145 info.endTime.set(end);
148 info.startTime = new Time();
150 info.startTime.timezone = Time.TIMEZONE_UTC;
152 info.startTime.set(begin);
154 info.id = eventId;
155 info.eventTitle = intent.getStringExtra(Events.TITLE);
156 info.calendarId = intent.getLongExtra(Events.CALENDAR_ID, -1)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ContactInfoHelper.java 57 * If the number does not match any contact, returns a contact info containing only the number
66 final ContactInfo info; local
68 // Determine the contact info.
80 info = sipInfo;
89 info = phoneInfo;
93 if (info == null) {
97 // If we did not find a matching contact, generate an empty contact info for the number.
98 if (info == ContactInfo.EMPTY) {
105 updatedInfo = info;
149 final ContactInfo info; local
193 final ContactInfo info; local
225 ContactInfo info = lookupContactFromUri(uri); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
InfoPanel.java 17 package com.android.gallery3d.filtershow.info;
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfoUtils.java 14 * Utility methods for contact and caller info related functionality
35 * This is called to get caller info for a call. This will return a CallerInfo
42 CallerInfo info = buildCallerInfo(context, call); local
43 String number = info.phoneNumber;
47 if (info.numberPresentation == Call.PRESENTATION_ALLOWED) {
52 return info;
56 CallerInfo info = new CallerInfo(); local
60 info.cnapName = identification.getCnapName();
61 info.name = info.cnapName
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
UninstallShortcutReceiver.java 56 PendingUninstallShortcutInfo info = new PendingUninstallShortcutInfo(data); local
58 mUninstallQueue.add(info);
60 processUninstallShortcut(context, info);
  /packages/apps/Settings/src/com/android/settings/
AppWidgetLoader.java 120 AppWidgetProviderInfo info = appWidgets.get(i); local
123 if (!ignoreFilter && (info.widgetCategory & categoryFilter) == 0) {
127 Item item = mItemConstructor.createItem(mContext, info,
135 Item createItem(Context context, AppWidgetProviderInfo info, Bundle extras);
OwnerInfoSettings.java 69 String info = mLockPatternUtils.getOwnerInfo(mUserId); local
73 mOwnerInfo.setText(info);
106 String info = mOwnerInfo.getText().toString(); local
107 mLockPatternUtils.setOwnerInfo(info, mUserId);
  /packages/apps/Settings/src/com/android/settings/accessibility/
LocalePreference.java 107 final LocaleInfo info = localeInfos[i]; local
108 entries[i + 1] = info.toString();
109 entryValues[i + 1] = info.locale.toString();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
Log.java 74 public void info(Object message) { method in class:Log
79 public void info(Object message, Throwable t) { method in class:Log
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
SendersFormattingTests.java 42 MessageInfo info = new MessageInfo(read, starred, null, -1, null); local
43 conv.addMessage(info);
79 MessageInfo info = new MessageInfo(read, starred, sender, -1, null); local
80 conv.addMessage(info);
  /packages/experimental/PrintService2/src/foo/bar/printservice2/
MyPrintService.java 67 PrintJobInfo info = printJob.getInfo(); local
68 final File file = new File(getFilesDir(), info.getLabel() + ".pdf");
122 PrintJobInfo info = printJob.getInfo();
124 "Printer: " + info.getPrinterId().getName()
125 + " copies: " + info.getAttributes().getCopies(),
  /packages/services/Telephony/src/com/android/phone/
CallGatewayManager.java 104 * @param gatewayInfo Gateway info gathered using getRawGatewayInfo.
123 * setGatewayInfoForConnection, return the associated raw gateway info data. If not, then
124 * return an empty raw gateway info.
127 final RawGatewayInfo info = mMap.get(connection); local
128 if (info != null) {
129 return info;
136 * Check if all the provider's info is present in the intent.
139 * in-call screen's provider info overlay.
  /pdk/apps/HelloPDK/src/com/example/android/helloPDK/
MainActivity.java 85 ResolveInfo info = list.get(i); local
86 CharSequence labelSeq = info.loadLabel(pm);
87 String label = labelSeq != null ? labelSeq.toString() : info.activityInfo.name;
98 info.activityInfo.applicationInfo.packageName,
99 info.activityInfo.name));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cycx_cfm.h 80 * @checksum - info + image
83 * @info - firmware module info
92 struct cycx_fw_info info; member in struct:cycx_firmware
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cycx_cfm.h 80 * @checksum - info + image
83 * @info - firmware module info
92 struct cycx_fw_info info; member in struct:cycx_firmware
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_instr.h 78 int (*info)(void *private_data, char *info_data, long len); member in struct:snd_seq_kinstr_ops
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cycx_cfm.h 80 * @checksum - info + image
83 * @info - firmware module info
92 struct cycx_fw_info info; member in struct:cycx_firmware
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_instr.h 78 int (*info)(void *private_data, char *info_data, long len); member in struct:snd_seq_kinstr_ops

Completed in 1580 milliseconds

<<31323334353637383940>>