Home
last modified time | relevance | path

Searched refs:username (Results 1 – 8 of 8) sorted by relevance

/development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
Ddatastore.py38 def get_contact_info(cls, username): argument
39 if username not in (None, ''):
40 query = cls.gql('WHERE handle = :1', username)
45 def get_contact_last_updated(cls, username): argument
46 if username not in (None, ''):
47 query = cls.gql('WHERE handle = :1', username)
52 def get_contact_id(cls, username): argument
53 if username not in (None, ''):
54 query = cls.gql('WHERE handle = :1', username)
59 def get_contact_status(cls, username): argument
[all …]
/development/samples/SampleSyncAdapter/samplesyncadapter_server/
Dweb_services.py67 self.username = self.request.get('username')
70 logging.info('Authenticatng username: ' + self.username)
72 if ((self.username != None) and
73 (self.username.startswith(BaseWebServiceHandler.ACCT_USER_NAME)) and
95 self.username = self.request.get('username')
98 logging.info('Validating username: ' + self.username)
100 if ((self.username != None) and
101 (self.username.startswith(BaseWebServiceHandler.ACCT_USER_NAME)) and
219 logging.info('* Processing client changes: ' + self.username)
364 def __init__(self, contact_list, username, client_id, host_url, high_water_mark): argument
[all …]
/development/tools/repo_pull/
Dgerrit.py65 username = cookie[0:sep]
68 credentials[domain] = (username, password)
84 username, password = credentials[domain]
88 auth_handler.add_password(domain, domain, username, password)
/development/samples/SipDemo/src/com/example/android/sip/
DWalkieTalkieActivity.java124 String username = prefs.getString("namePref", ""); in initializeLocalProfile() local
128 if (username.length() == 0 || domain.length() == 0 || password.length() == 0) { in initializeLocalProfile()
134 SipProfile.Builder builder = new SipProfile.Builder(username, domain); in initializeLocalProfile()
/development/cmds/monkey/
Dexample_script.txt21 # Go down and select the account username
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
DNetworkUtilities.java104 public static String authenticate(String username, String password) { in authenticate() argument
108 params.add(new BasicNameValuePair(PARAM_USERNAME, username)); in authenticate()
/development/tools/repo_diff/service/repodiff/
DREADME.md21 creating a non-root user to log into the database; Make note of the username
33 * GCP_DB_USER_DEV: the username created from step 7
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
DContactManager.java530 final String username = rawContact.getUserName(); in updateContactStatus() local
542 values.put(StatusUpdates.IM_ACCOUNT, username); in updateContactStatus()