Searched refs:oauth (Results 1 – 25 of 39) sorted by relevance
12
/external/curl/lib/vauth/ |
D | oauth2.c | 66 char *oauth = NULL; in Curl_auth_create_oauth_bearer_message() local 70 oauth = aprintf("user=%s\1auth=Bearer %s\1\1", user, bearer); in Curl_auth_create_oauth_bearer_message() 72 oauth = aprintf("user=%s\1host=%s\1auth=Bearer %s\1\1", user, host, in Curl_auth_create_oauth_bearer_message() 75 oauth = aprintf("user=%s\1host=%s\1port=%ld\1auth=Bearer %s\1\1", user, in Curl_auth_create_oauth_bearer_message() 77 if(!oauth) in Curl_auth_create_oauth_bearer_message() 81 result = Curl_base64_encode(data, oauth, strlen(oauth), outptr, outlen); in Curl_auth_create_oauth_bearer_message() 83 free(oauth); in Curl_auth_create_oauth_bearer_message()
|
/external/oauth/core/src/main/java/net/oauth/ |
D | consumer.properties.sample | 5 ma.gnolia.serviceProvider.requestTokenURL: http://ma.gnolia.com/oauth/get_request_token 6 ma.gnolia.serviceProvider.userAuthorizationURL: http://ma.gnolia.com/oauth/authorize 7 ma.gnolia.serviceProvider.accessTokenURL: http://ma.gnolia.com/oauth/get_access_token 14 twitter.serviceProvider.requestTokenURL: http://twitter.com/oauth/request_token 15 twitter.serviceProvider.userAuthorizationURL: http://twitter.com/oauth/authorize 16 twitter.serviceProvider.accessTokenURL: http://twitter.com/oauth/access_token
|
D | OAuthProblemException.java | 17 package net.oauth; 21 import net.oauth.http.HttpMessage; 22 import net.oauth.http.HttpResponseMessage;
|
D | OAuthConsumer.java | 17 package net.oauth; 22 import net.oauth.http.HttpMessage;
|
D | OAuthAccessor.java | 17 package net.oauth; 25 import net.oauth.http.HttpMessage;
|
D | SimpleOAuthValidator.java | 16 package net.oauth; 21 import net.oauth.signature.OAuthSignatureMethod;
|
/external/oauth/core/src/main/java/net/oauth/client/ |
D | OAuthResponseMessage.java | 17 package net.oauth.client; 22 import net.oauth.OAuth; 23 import net.oauth.OAuthMessage; 24 import net.oauth.OAuthProblemException; 25 import net.oauth.http.HttpMessage; 26 import net.oauth.http.HttpResponseMessage;
|
D | OAuthClient.java | 17 package net.oauth.client; 29 import net.oauth.OAuth; 30 import net.oauth.OAuthAccessor; 31 import net.oauth.OAuthConsumer; 32 import net.oauth.OAuthException; 33 import net.oauth.OAuthMessage; 34 import net.oauth.OAuthProblemException; 35 import net.oauth.http.HttpClient; 36 import net.oauth.http.HttpMessage; 37 import net.oauth.http.HttpMessageDecoder; [all …]
|
D | URLConnectionClient.java | 17 package net.oauth.client; 28 import net.oauth.http.HttpClient; 29 import net.oauth.http.HttpMessage; 30 import net.oauth.http.HttpResponseMessage;
|
D | URLConnectionResponse.java | 17 package net.oauth.client; 26 import net.oauth.OAuth; 27 import net.oauth.http.HttpMessage; 28 import net.oauth.http.HttpResponseMessage;
|
/external/autotest/client/common_lib/cros/fake_device_server/ |
D | devices_unittest.py | 16 from fake_device_server import oauth 29 self.oauth = oauth.OAuth(self.fail_control) 30 self.commands = commands.Commands(self.oauth, self.fail_control) 34 self.oauth,
|
D | registration_tickets_unittest.py | 17 from fake_device_server import oauth 32 self.oauth = oauth.OAuth(self.fail_control) 33 self.commands = commands.Commands(self.oauth, self.fail_control) 37 self.oauth,
|
D | server.py | 23 from fake_device_server import oauth 48 oauth_handler = oauth.OAuth(fail_control_handler) 80 '/' + oauth.OAUTH_PATH,
|
D | commands_unittest.py | 34 self.oauth = fake_oauth.FakeOAuth() 36 self.commands = commands.Commands(self.oauth, self.fail_control)
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
D | PLAINTEXT.java | 17 package net.oauth.signature; 19 import net.oauth.OAuth; 20 import net.oauth.OAuthException;
|
D | OAuthSignatureMethod.java | 17 package net.oauth.signature; 28 import net.oauth.OAuth; 29 import net.oauth.OAuthAccessor; 30 import net.oauth.OAuthConsumer; 31 import net.oauth.OAuthException; 32 import net.oauth.OAuthMessage; 33 import net.oauth.OAuthProblemException;
|
D | HMAC_SHA1.java | 17 package net.oauth.signature; 27 import net.oauth.OAuth; 28 import net.oauth.OAuthException;
|
D | RSA_SHA1.java | 17 package net.oauth.signature; 32 import net.oauth.OAuth; 33 import net.oauth.OAuthAccessor; 34 import net.oauth.OAuthException;
|
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
D | HttpClient4.java | 17 package net.oauth.client.httpclient4; 23 import net.oauth.client.ExcerptInputStream; 24 import net.oauth.http.HttpMessage; 25 import net.oauth.http.HttpResponseMessage; 48 public class HttpClient4 implements net.oauth.http.HttpClient {
|
D | HttpMethodResponse.java | 17 package net.oauth.client.httpclient4; 25 import net.oauth.OAuth; 26 import net.oauth.client.ExcerptInputStream; 27 import net.oauth.http.HttpMessage; 28 import net.oauth.http.HttpResponseMessage;
|
/external/oauth/core/src/main/java/net/oauth/http/ |
D | HttpClient.java | 17 package net.oauth.http; 20 import net.oauth.OAuthMessage;
|
D | HttpMessage.java | 17 package net.oauth.http; 28 import net.oauth.client.ExcerptInputStream;
|
/external/autotest/client/common_lib/cros/tendo/ |
D | buffet_config.py | 10 from autotest_lib.client.common_lib.cros.fake_device_server import oauth 18 oauth.OAUTH_PATH) 20 TEST_API_KEY = oauth.TEST_API_KEY
|
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/ |
D | oauth.py | 12 from fake_device_server import oauth 20 self, oauth.OAUTH_PATH, *args, **kwargs)
|
/external/testng/ |
D | travis.sh | 7 -Dsonar.github.oauth=$SONAR_GITHUB_OAUTH \
|
12