HomeSort by relevance Sort by last modified time
    Searched refs:authtoken (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/remoting/tools/
runclient.py 35 authtoken = authinfo[1].rstrip()
48 command.append('--token ' + authtoken)
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 86 // Use the account manager to request the AuthToken we'll need
87 // to talk to our sample server. If we don't have an AuthToken
89 // and AuthToken.
90 final String authtoken = mAccountManager.blockingGetAuthToken(account, local
101 updatedContacts = NetworkUtilities.syncContacts(account, authtoken,
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 67 public static final String PARAM_AUTH_TOKEN = "authtoken";
123 String authToken = null;
129 authToken = ireader.readLine().trim();
132 if ((authToken != null) && (authToken.length() > 0)) {
134 return authToken;
140 Log.e(TAG, "IOException when getting authtoken", e);
154 * @param authtoken The authtoken stored in the AccountManager for this
161 Account account, String authtoken, long serverSyncState, List<RawContact> dirtyContacts
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 60 an authtoken as the only content. If auth fails, we'll send an "invalid
96 self.authtoken = self.request.get('authtoken')
102 (self.authtoken == BaseWebServiceHandler.ACCT_AUTH_TOKEN)):
114 request to include username and password fields. It returns authtoken
130 request to include username and authtoken. If the authtoken is valid

Completed in 84 milliseconds