Searched defs:profile (Results 1 - 18 of 18) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DAutoFillProfileDatabase.java98 public void addOrUpdateProfile(final int id, AutoFillProfile profile) { argument
113 profile.getFullName(),
114 profile.getEmailAddress(),
115 profile.getCompanyName(),
116 profile.getAddressLine1(),
117 profile.getAddressLine2(),
118 profile.getCity(),
119 profile.getState(),
120 profile.getZipCode(),
121 profile
[all...]
H A DAutofillHandler.java34 // Default to zero. In the case no profile is set up, the initial
36 // creates a profile. Otherwise, we'll read the ID of the last used
37 // profile from the prefs db.
76 // Read the last active AutoFill profile id.
81 // Load the autofill profile data from the database. We use a database separate
121 public void setAutoFillProfile(AutoFillProfile profile, Message msg) { argument
123 if (profile != null) {
124 profileId = profile.getUniqueId();
125 // Update the AutoFill DB with the new profile.
126 new SaveProfileToDbTask(msg).execute(profile);
[all...]
H A DBrowserSettings.java506 public void setAutoFillProfile(AutoFillProfile profile, Message msg) { argument
508 mAutofillHandler.setAutoFillProfile(profile, msg);
509 // Auto-fill will reuse the same profile ID when making edits to the profile,
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DA2dpProfile.java46 // Order of this profile in device profiles list
53 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
57 public void onServiceDisconnected(int profile) { argument
H A DHeadsetProfile.java52 // Order of this profile in device profiles list
59 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
81 public void onServiceDisconnected(int profile) { argument
H A DHidProfile.java30 * HidProfile handles Bluetooth HID profile.
38 // Order of this profile in device profiles list
45 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
50 public void onServiceDisconnected(int profile) { argument
H A DPanProfile.java32 * PanProfile handles Bluetooth PAN profile (NAP and PANU).
43 // Order of this profile in device profiles list
50 public void onServiceConnected(int profile, BluetoothProfile proxy) { argument
54 public void onServiceDisconnected(int profile) { argument
H A DDeviceProfilesSettings.java130 // Add a preference for each profile
178 for (LocalBluetoothProfile profile : mCachedDevice.getConnectableProfiles()) {
179 Preference pref = createProfilePreference(profile);
197 * Creates a checkbox preference for the particular profile. The key will be
198 * the profile's name.
200 * @param profile The profile for which the preference controls.
201 * @return A preference that allows the user to choose whether this profile
204 private CheckBoxPreference createProfilePreference(LocalBluetoothProfile profile) { argument
206 pref.setKey(profile
253 onProfileClicked(LocalBluetoothProfile profile) argument
268 askDisconnect(Context context, final LocalBluetoothProfile profile) argument
327 refreshProfilePreference(CheckBoxPreference profilePref, LocalBluetoothProfile profile) argument
[all...]
H A DLocalBluetoothAdapter.java93 BluetoothProfile.ServiceListener listener, int profile) {
94 mAdapter.getProfileProxy(context, listener, profile);
92 getProfileProxy(Context context, BluetoothProfile.ServiceListener listener, int profile) argument
H A DLocalBluetoothProfileManager.java82 * Mapping from profile name, e.g. "HEADSET" to profile object.
120 * Initialize or update the local profile objects. If a UUID was previously
122 * profile object as it might be referenced elsewhere, or the UUID might
123 * come back and we don't want multiple copies of the profile objects.
130 Log.d(TAG, "Adding local A2DP profile");
136 Log.w(TAG, "Warning: A2DP profile was previously added but the UUID is now missing.");
143 Log.d(TAG, "Adding local HEADSET profile");
150 Log.w(TAG, "Warning: HEADSET profile was previously added but the UUID is now missing.");
156 Log.d(TAG, "Adding local OPP profile");
172 addProfile(LocalBluetoothProfile profile, String profileName, String stateChangedAction) argument
178 addPanProfile(LocalBluetoothProfile profile, String profileName, String stateChangedAction) argument
204 StateChangedHandler(LocalBluetoothProfile profile) argument
230 PanStateChangedHandler(LocalBluetoothProfile profile) argument
[all...]
H A DDockService.java90 * If disconnected unexpectedly, reconnect up to 6 times. Each profile counts
717 LocalBluetoothProfile profile, int startId) {
735 cachedDevice.connectProfile(profile);
748 for (LocalBluetoothProfile profile : profiles) {
749 if (profile.getPreferred(device) == BluetoothProfile.PRIORITY_AUTO_CONNECT) {
796 LocalBluetoothProfile profile = mProfiles[i];
797 if (DEBUG) Log.d(TAG, profile.toString() + " = " + mCheckedItems[i]);
804 int status = profile.getConnectionStatus(cachedDevice.getDevice());
810 profile.setPreferred(device, mCheckedItems[i]);
812 if (mCheckedItems[i] != profile
716 handleUnexpectedDisconnect(BluetoothDevice disconnectedDevice, LocalBluetoothProfile profile, int startId) argument
[all...]
H A DCachedBluetoothDevice.java87 * Last time a bt profile auto-connect was attempted.
101 * Describes the current device and profile for logging.
103 * @param profile Profile to describe
104 * @return Description of the device and profile
106 private String describe(LocalBluetoothProfile profile) { argument
109 if (profile != null) {
110 sb.append(" Profile:").append(profile);
116 void onProfileStateChanged(LocalBluetoothProfile profile, int newProfileState) { argument
118 Log.d(TAG, "onProfileStateChanged: profile " + profile
161 disconnect(LocalBluetoothProfile profile) argument
234 connectProfile(LocalBluetoothProfile profile) argument
241 connectInt(LocalBluetoothProfile profile) argument
310 getProfileConnectionState(LocalBluetoothProfile profile) argument
408 isConnectedProfile(LocalBluetoothProfile profile) argument
[all...]
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnDialog.java68 VpnProfile profile, boolean editing) {
71 mProfile = profile;
101 // Second, copy values from the profile.
155 // Create a button to save the profile.
334 VpnProfile profile = new VpnProfile(mProfile.key);
335 profile.name = mName.getText().toString();
336 profile.type = mType.getSelectedItemPosition();
337 profile.server = mServer.getText().toString().trim();
338 profile.username = mUsername.getText().toString();
339 profile
67 VpnDialog(Context context, DialogInterface.OnClickListener listener, VpnProfile profile, boolean editing) argument
[all...]
H A DVpnSettings.java68 // The key of the profile for the current ContextMenu.
78 VpnProfile profile = VpnProfile.decode(savedState.getString("VpnKey"),
80 if (profile != null) {
81 mDialog = new VpnDialog(getActivity(), this, profile,
91 VpnProfile profile = mDialog.getProfile();
92 savedState.putString("VpnKey", profile.key);
93 savedState.putByteArray("VpnProfile", profile.encode());
131 VpnProfile profile = VpnProfile.decode(key,
133 if (profile == null) {
134 Log.w(TAG, "bad profile
347 connect(VpnProfile profile) argument
464 VpnPreference(Context context, VpnProfile profile) argument
478 update(VpnProfile profile) argument
[all...]
/packages/apps/Phone/src/com/android/phone/sip/
H A DSipSettings.java59 * The PreferenceActivity class for managing sip profile preferences.
80 private SipProfile mProfile; // profile that's being edited
112 Log.v(TAG, "profile uid is " + profileUid + " isPrimary:"
196 SipProfile profile = intent.getParcelableExtra(KEY_SIP_PROFILE);
198 Log.v(TAG, "New Profile Name:" + profile.getProfileName());
199 addProfile(profile);
203 Log.v(TAG, "Can not handle the profile : " + e.getMessage());
278 private String getProfileName(SipProfile profile) { argument
279 String profileName = profile.getProfileName();
281 profileName = profile
355 handleProfileClick(final SipProfile profile) argument
405 startSipEditor(final SipProfile profile) argument
[all...]
H A DSipEditor.java51 * The activity class for editing a new or existing SIP profile.
60 private static final String KEY_PROFILE = "profile";
156 Log.v(TAG, "start profile editor");
364 SipProfile profile = createSipProfile();
366 intent.putExtra(SipSettings.KEY_SIP_PROFILE, (Parcelable) profile);
371 replaceProfile(mOldProfile, profile);
391 // Replace profile in a background thread as it takes time to access the
393 // newProfile may be null if the old profile is to be deleted rather
398 // if new profile is primary, unregister the old primary account
470 Log.v(TAG, "Edit the existing profile
560 PrimaryAccountSelector(SipProfile profile) argument
583 commit(SipProfile profile) argument
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DEffectsRecorder.java159 public void setProfile(CamcorderProfile profile) { argument
168 mProfile = profile;
533 throw new RuntimeException("No recording profile provided!");
/packages/apps/Calculator/
H A Darity-2.1.2.jar ... SyntaxException org.javia.arity.ArityException static void profile (org.javia.arity.Symbols, java.lang ...

Completed in 760 milliseconds