Home
last modified time | relevance | path

Searched +full:- +full:- +full:role +full:- +full:session +full:- +full:name (Results 1 – 25 of 1155) sorted by relevance

12345678910>>...47

/aosp_15_r20/external/aws-sdk-java-v2/services/sts/src/main/resources/codegen-resources/
H A Dservice-2.json4 "apiVersion":"2011-06-15",
12 "uid":"sts-2011-06-15",
13 "xmlNamespace":"https://sts.amazonaws.com/doc/2011-06-15/"
17 "name":"AssumeRole", string
33-account access. For a comparison of <code>AssumeRole</code> with other API operations that produc…
36 "name":"AssumeRoleWithSAML", string
54role-based Amazon Web Services access without user-specific credentials or configuration. For a co…
57 "name":"AssumeRoleWithWebIdentity", string
76-compatible identity provider such as Google or <a href=\"https://docs.aws.amazon.com/cognito/late…
79 "name":"DecodeAuthorizationMessage", string
[all …]
H A Dexamples-1.json9 …"Policy": "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"Stmt1\",\"Effect\":\"Allow\",\"Ac…
10 "RoleArn": "arn:aws:iam::123456789012:role/demo",
15 "Arn": "arn:aws:sts::123456789012:assumed-role/demo/Bob",
20 "Expiration": "2011-07-15T23:28:33.359Z",
33 "id": "to-assume-a-role-1480532402212",
34 "title": "To assume a role"
42 "RoleArn": "arn:aws:iam::123456789012:role/FederatedWebIdentityRole",
44 …m6Ry6_BG7PrtLZtj_dfCTj92xNGed-CrKqjG7nPBjNIL016GGvuS5gSvPRUxWES3VYfm1wl7WTI7jn-Pcb6M-buCgHhFOzTQxo…
48 "Arn": "arn:aws:sts::123456789012:assumed-role/FederatedWebIdentityRole/app1",
54 "Expiration": "2014-10-24T23:00:23Z",
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/eksauth/src/main/resources/codegen-resources/
H A Dservice-2.json4 "apiVersion":"2023-11-26",
5 "endpointPrefix":"eks-auth",
7 "protocol":"rest-json",
11 "signingName":"eks-auth",
12 "uid":"eks-auth-2023-11-26"
16 "name":"AssumeRoleForPodIdentity", string
19 "requestUri":"/clusters/{clusterName}/assume-role-for-pod-identity",
60 "documentation":"<p>The name of the cluster for the request.</p>",
82 …"documentation":"<p>The name of the Kubernetes service account inside the cluster to associate the…
90 …"documentation":"<p>The Amazon Resource Name (ARN) and ID of the EKS Pod Identity association.</p>"
[all …]
/aosp_15_r20/frameworks/av/media/libaudioclient/
H A DAidlConversion.cpp8 * http://www.apache.org/licenses/LICENSE-2.0
104 case media::AudioPortType::SESSION: in aidl2legacy_AudioPortType_audio_port_type_t()
120 return media::AudioPortType::SESSION; in legacy2aidl_audio_port_type_t_AudioPortType()
126 media::AudioPortRole role, media::AudioPortType type) { in portDirection() argument
128 aidl2legacy_AudioPortRole_audio_port_role_t(role)); in portDirection()
184 const AudioPortMixExtUseCase& aidl, media::AudioPortRole role) { in aidl2legacy_AudioPortMixExtUseCase() argument
185 switch (role) { in aidl2legacy_AudioPortMixExtUseCase()
199 LOG_ALWAYS_FATAL("Shouldn't get here"); // with -Werror,-Wswitch may compile-time fail in aidl2legacy_AudioPortMixExtUseCase()
203 const audio_port_config_mix_ext_usecase& legacy, audio_port_role_t role) { in legacy2aidl_AudioPortMixExtUseCase() argument
204 switch (role) { in legacy2aidl_AudioPortMixExtUseCase()
[all …]
/aosp_15_r20/external/wpa_supplicant_8/wpa_supplicant/
H A DREADME-P2P1 wpa_supplicant and Wi-Fi P2P
4 This document describes how the Wi-Fi P2P implementation in
10 Introduction to Wi-Fi P2P
11 -------------------------
15 More information about Wi-Fi P2P is available from Wi-Fi Alliance:
16 http://www.wi-fi.org/Wi-Fi_Direct.php
20 -----------------------------
26 ----------------------------
28 Wi-Fi P2P is an optional component that needs to be enabled in the
30 configuration that includes Wi-Fi P2P support and Linux nl80211
[all …]
/aosp_15_r20/hardware/interfaces/audio/common/all-versions/default/
H A DHidlUtils.cpp8 * http://www.apache.org/licenses/LICENSE-2.0
19 #include <common/all-versions/VersionUtils.h>
32 config->sampleRateHz = halConfig.sample_rate; in audioConfigFromHal()
33 config->channelMask = EnumBitfield<AudioChannelMask>(halConfig.channel_mask); in audioConfigFromHal()
34 config->format = AudioFormat(halConfig.format); in audioConfigFromHal()
35 status_t status = audioOffloadInfoFromHal(halConfig.offload_info, &config->offloadInfo); in audioConfigFromHal()
36 config->frameCount = halConfig.frame_count; in audioConfigFromHal()
42 halConfig->sample_rate = config.sampleRateHz; in audioConfigToHal()
43 halConfig->channel_mask = static_cast<audio_channel_mask_t>(config.channelMask); in audioConfigToHal()
44 halConfig->format = static_cast<audio_format_t>(config.format); in audioConfigToHal()
[all …]
/aosp_15_r20/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
H A DWifiAwareManagerFacade.java8 * http://www.apache.org/licenses/LICENSE-2.0
108 private static final String NS_KEY_ROLE = "role";
122 j.put(NS_KEY_ROLE, ns.role); in getJsonString()
138 if (ns.transportProtocol != -1) { in getJsonString()
150 int type = 0, role = 0, clientId = 0, sessionId = 0, peerId = 0; in getNetworkSpecifier() local
154 int port = 0, transportProtocol = -1; in getNetworkSpecifier()
160 role = j.getInt((NS_KEY_ROLE)); in getNetworkSpecifier()
187 return new WifiAwareNetworkSpecifier(type, role, clientId, sessionId, peerId, peerMac, pmk, in getNetworkSpecifier()
191 private static String getStringOrNull(JSONObject j, String name) throws JSONException { in getStringOrNull() argument
192 if (j.isNull(name)) { in getStringOrNull()
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/transfer/src/main/resources/codegen-resources/
H A Dservice-2.json4 "apiVersion":"2018-11-05",
14 "uid":"transfer-2018-11-05"
18 "name":"CreateAccess", string
35 "name":"CreateAgreement", string
53 "name":"CreateConnector", string
68-b2b-server.html#configure-as2-connector\">Create AS2 connectors</a> and <a href=\"https://docs.aw…
71 "name":"CreateProfile", string
88 "name":"CreateServer", string
104-scaling virtual server based on the selected file transfer protocol in Amazon Web Services. When …
107 "name":"CreateUser", string
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/sts/src/main/java/software/amazon/awssdk/services/sts/auth/
H A DStsWebIdentityTokenFileCredentialsProvider.java40 …* AWS Security Token Service to maintain short-lived sessions to use for authentication. These ses…
43 …oleWithWebIdentityCredentialsProvider}, this reads the web identity information, including AWS role
44 …* ARN, AWS session name and the location of a web identity token file from system properties and e…
69 super(builder, "sts-assume-role-with-web-identity-credentials-provider"); in StsWebIdentityTokenFileCredentialsProvider()
80 … .orElse("aws-sdk-java-" + System.currentTimeMillis()); in StsWebIdentityTokenFileCredentialsProvider()
91 : () -> AssumeRoleWithWebIdentityRequest.builder() in StsWebIdentityTokenFileCredentialsProvider()
192 * The Amazon Resource Name (ARN) of the IAM role that is associated with the Sts.
196 …* @param roleArn The Amazon Resource Name (ARN) of the IAM role that is associated with the Sts cl…
206 * Sets Amazon Resource Name (ARN) of the IAM role that is associated with the Sts.
210 …* @param roleArn The Amazon Resource Name (ARN) of the IAM role that is associated with the Sts cl…
[all …]
/aosp_15_r20/frameworks/av/services/audiopolicy/tests/
H A Daudiopolicymanager_tests.cpp8 * http://www.apache.org/licenses/LICENSE-2.0
28 #include <android-base/file.h>
29 #include <android-base/properties.h>
85 AudioMixMatchCriterion createSessionIdCriterion(audio_session_t session, bool exclude = false) { in createSessionIdCriterion() argument
87 criterion.mValue.mAudioSessionId = session; in createSessionIdCriterion()
104 EXPECT_TRUE(config->getSource().empty()); in TEST()
105 EXPECT_TRUE(config->getHwModules().isEmpty()); in TEST()
106 EXPECT_TRUE(config->getInputDevices().isEmpty()); in TEST()
107 EXPECT_TRUE(config->getOutputDevices().isEmpty()); in TEST()
113 EXPECT_EQ(AudioPolicyConfig::kDefaultConfigSource, config->getSource()); in TEST()
[all …]
/aosp_15_r20/external/ms-tpm-20-ref/TPMCmd/tpm/src/main/
H A DSessionProcess.c38 // ParseSessionBuffer() to process the authorization session area of a command and
39 // BuildResponseSession() to create the authorization session area of a response.
88 result = IS_ATTRIBUTE(nvIndex->publicArea.attributes, TPMA_NV, NO_DA); in IsDAExempted()
117 SESSION *session = NULL; in IncrementLockout() local
119 // Don't increment lockout unless the handle associated with the session in IncrementLockout()
120 // is DA protected or the session is bound to a DA protected entity. in IncrementLockout()
128 session = SessionGet(sessionHandle); in IncrementLockout()
129 // If the session is bound to lockout, then use that as the relevant in IncrementLockout()
130 // handle. This means that an authorization failure with a bound session in IncrementLockout()
133 if(session->attributes.isLockoutBound == SET) in IncrementLockout()
[all …]
/aosp_15_r20/hardware/interfaces/audio/common/all-versions/default/7.0/
H A DHidlUtils.cpp8 * http://www.apache.org/licenses/LICENSE-2.0
25 #include <common/all-versions/HidlSupport.h>
26 #include <common/all-versions/VersionUtils.h>
49 if (!channelMask->empty() && !xsd::isUnknownAudioChannelMask(*channelMask)) { in audioIndexChannelMaskFromHal()
60 if (!channelMask->empty() && !xsd::isUnknownAudioChannelMask(*channelMask)) { in audioInputChannelMaskFromHal()
71 if (!channelMask->empty() && !xsd::isUnknownAudioChannelMask(*channelMask)) { in audioOutputChannelMaskFromHal()
116 return halChannelMasks.size() == channelMasks->size() ? NO_ERROR : BAD_VALUE; in audioChannelMasksFromHal()
133 configBase->sampleRateHz = halConfigBase.sample_rate; in audioConfigBaseFromHal()
135 audioChannelMaskFromHal(halConfigBase.channel_mask, isInput, &configBase->channelMask), in audioConfigBaseFromHal()
137 CONVERT_CHECKED(audioFormatFromHal(halConfigBase.format, &configBase->format), result); in audioConfigBaseFromHal()
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/nimble/src/main/resources/codegen-resources/
H A Dservice-2.json4 "apiVersion":"2020-08-01",
7 "protocol":"rest-json",
12 "uid":"nimble-2020-08-01"
16 "name":"AcceptEulas", string
19 "requestUri":"/2020-08-01/studios/{studioId}/eula-acceptances",
36 "name":"CreateLaunchProfile", string
39 "requestUri":"/2020-08-01/studios/{studioId}/launch-profiles",
56 "name":"CreateStreamingImage", string
59 "requestUri":"/2020-08-01/studios/{studioId}/streaming-images",
76 "name":"CreateStreamingSession", string
[all …]
/aosp_15_r20/system/media/tests/
H A Dsystemaudio_tests.cpp8 * http://www.apache.org/licenses/LICENSE-2.0
49 .id = 1, .role = AUDIO_PORT_ROLE_SOURCE, .type = AUDIO_PORT_TYPE_DEVICE }; in TEST()
53 .id = 2, .role = AUDIO_PORT_ROLE_SINK, .type = AUDIO_PORT_TYPE_DEVICE }; in TEST()
66 .id = 1, .role = AUDIO_PORT_ROLE_SOURCE, .type = AUDIO_PORT_TYPE_DEVICE }; in TEST()
74 .id = 1, .role = AUDIO_PORT_ROLE_SINK, .type = AUDIO_PORT_TYPE_DEVICE }; in TEST()
82 .id = 1, .role = AUDIO_PORT_ROLE_SINK, .type = AUDIO_PORT_TYPE_MIX }; in TEST()
90 .id = 1, .role = AUDIO_PORT_ROLE_SOURCE, .type = AUDIO_PORT_TYPE_MIX }; in TEST()
103 .id = 1, .role = AUDIO_PORT_ROLE_SOURCE, .type = AUDIO_PORT_TYPE_DEVICE }; in TEST()
105 .id = 2, .role = AUDIO_PORT_ROLE_SINK, .type = AUDIO_PORT_TYPE_DEVICE }; in TEST()
332 lhs->*field = updatedValue; in updateFieldAndCompare()
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/appstream/src/main/resources/codegen-resources/
H A Dservice-2.json4 "apiVersion":"2016-12-01",
13 "uid":"appstream-2016-12-01"
17 "name":"AssociateAppBlockBuilderAppBlock", string
34 "name":"AssociateApplicationFleet", string
51 "name":"AssociateApplicationToEntitlement", string
68 "name":"AssociateFleet", string
86 "name":"BatchAssociateUserStack", string
100 "name":"BatchDisassociateUserStack", string
114 "name":"CopyImage", string
132 "name":"CreateAppBlock", string
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/ext/media2/
H A DSessionCallbackBuilder.DefaultAllowedCommandProvider.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"><…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
[all …]
H A DSessionCallbackBuilder.CustomCommandProvider.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"><…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
[all …]
H A DSessionCallbackBuilder.SkipCallback.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"><…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
[all …]
H A DSessionCallbackBuilder.AllowedCommandProvider.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"><…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/ext/media2/
H A DSessionCallbackBuilder.DefaultAllowedCommandProvider.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"><…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
[all …]
H A DSessionCallbackBuilder.CustomCommandProvider.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"><…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
[all …]
H A DSessionCallbackBuilder.SkipCallback.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"><…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
[all …]
H A DSessionCallbackBuilder.AllowedCommandProvider.html2 <!-- NewPage -->
4-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" s…
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8 <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style">
11 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"><…
12 <!--[if IE]>
13 <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js…
14 <![endif]-->
15 <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script>
16 <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script>
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dcompute_beta.regionBackendServices.html8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
16 font-size: 13px;
21 font-size: 26px;
22 margin-bottom: 1em;
26 font-size: 24px;
27 margin-bottom: 1em;
[all …]
/aosp_15_r20/external/webrtc/modules/audio_device/win/
H A Dcore_audio_utility_win.cc4 * Use of this source code is governed by a BSD-style license
46 // assigned for playback to the front-left, front-right, back-left,
47 // and back-right speakers, respectively. The channel data should be interleaved
127 ss.erase(ss.end() - 3, ss.end()); in ChannelMaskToString()
178 const char* RoleToString(const ERole role) { in RoleToString() argument
179 switch (role) { in RoleToString()
253 // The Core Audio APIs are implemented in the user-mode system components in IsSupportedInternal()
279 return SUCCEEDED(device->GetState(&state)) && (state & DEVICE_STATE_ACTIVE); in IsDeviceActive()
283 // specified by data-flow direction and role if `device_id` is default.
286 ERole role) { in CreateDeviceInternal() argument
[all …]

12345678910>>...47