HomeSort by relevance Sort by last modified time
    Searched refs:clientId (Results 1 - 25 of 32) sorted by null

1 2

  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDRoomServerClient.h 26 clientId:(NSString *)clientId
31 clientId:(NSString *)clientId
ARDSignalingChannel.h 40 @property(nonatomic, readonly) NSString *clientId;
46 clientId:(NSString *)clientId;
ARDWebSocketChannel.h 25 clientId:(NSString *)clientId;
ARDAppEngineClient.m 87 clientId:(NSString *)clientId
92 NSParameterAssert(clientId.length);
97 kARDRoomServerMessageFormat, roomId, clientId];
131 clientId:(NSString *)clientId
134 NSParameterAssert(clientId.length);
137 [NSString stringWithFormat:kARDRoomServerLeaveFormat, roomId, clientId];
ARDJoinResponse+Internal.h 18 @property(nonatomic, strong) NSString *clientId;
ARDJoinResponse.h 25 @property(nonatomic, readonly) NSString *clientId;
ARDJoinResponse.m 31 @synthesize clientId = _clientId;
48 response.clientId = params[kARDJoinClientIdKey];
ARDWebSocketChannel.m 35 @synthesize clientId = _clientId;
65 clientId:(NSString *)clientId {
67 NSParameterAssert(clientId.length);
69 _clientId = clientId;
185 @"clientid" : _clientId,
ARDAppClient+Internal.h 40 @property(nonatomic, strong) NSString *clientId;
  /development/samples/MultiClientInputMethod/src/com/example/android/multiclientinputmethod/
MultiClientInputMethod.java 52 public void addClient(int clientId, int uid, int pid,
56 mSoftInputWindowManager, clientId, uid, pid, selfReportedDisplayId);
58 Log.v(TAG, "addClient clientId=" + clientId + " uid=" + uid
61 mDelegate.acceptClient(clientId, callback, callback.getDispatcherState(),
66 public void removeClient(int clientId) {
68 Log.v(TAG, "removeClient clientId=" + clientId);
SoftInputWindow.java 113 void onDummyStartInput(int clientId, int targetWindowHandle) {
115 Log.v(TAG, "onDummyStartInput clientId=" + clientId
119 mClientId = clientId;
123 void onStartInput(int clientId, int targetWindowHandle, InputConnection inputConnection) {
125 Log.v(TAG, "onStartInput clientId=" + clientId
128 mClientId = clientId;
134 Log.v(TAG, "onKey clientId=" + clientId + " primaryCode=" + primaryCod
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
AppRTCClient.java 72 public final String clientId;
80 boolean initiator, String clientId,
85 this.clientId = clientId;
RoomParametersFetcher.java 102 String clientId = roomJson.getString("client_id");
130 Log.d(TAG, "RoomId: " + roomId + ". ClientId: " + clientId);
157 clientId, wssUrl, wssPostUrl,
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/tests/
ARDAppClientTest.mm 115 clientId:(NSString *)clientId
127 joinResponse.clientId = clientId;
154 clientId:clientId
165 clientId:clientId
172 clientId:(NSString *)clientId
    [all...]
  /external/adhd/scripts/audio_tuning/frontend/
google_drive_picker.js 15 clientId: CLIENT_ID,
22 this.clientId = options.clientId;
48 client_id: this.clientId + '.apps.googleusercontent.com',
60 setAppId(this.clientId).
  /device/google/cuttlefish_common/guest/hals/rild/
rild_cuttlefish.c 119 const char *clientId = NULL;
134 clientId = argv[i+1];
141 if (clientId == NULL) {
142 clientId = "0";
143 } else if (atoi(clientId) >= MAX_RILDS) {
147 if (strncmp(clientId, "0", MAX_CLIENT_ID_LENGTH)) {
149 clientId);
203 rilArgv[argc++] = (char*)clientId;
204 RLOGD("RIL_Init argc = %d clientId = %s", argc, rilArgv[argc-1]);
  /frameworks/av/media/libmedia/
IResourceManagerService.cpp 75 int64_t clientId,
81 data.writeInt64(clientId);
88 virtual void removeResource(int pid, int64_t clientId) {
92 data.writeInt64(clientId);
132 int64_t clientId = data.readInt64();
140 addResource(pid, clientId, client, resources);
147 int64_t clientId = data.readInt64();
148 removeResource(pid, clientId);
  /frameworks/av/media/libmedia/include/media/
IResourceManagerService.h 42 int64_t clientId,
46 virtual void removeResource(int pid, int64_t clientId) = 0;
  /frameworks/av/services/mediaresourcemanager/
ResourceManagerService.h 37 int64_t clientId;
64 int64_t clientId,
68 virtual void removeResource(int pid, int64_t clientId);
75 void removeResource(int pid, int64_t clientId, bool checkValid);
ResourceManagerService.cpp 42 DeathNotifier(const wp<ResourceManagerService> &service, int pid, int64_t clientId)
43 : mService(service), mPid(pid), mClientId(clientId) {}
104 int64_t clientId,
108 if (infos[i].clientId == clientId) {
113 info.clientId = clientId;
178 snprintf(buffer, SIZE, " Id: %lld\n", (long long)infos[j].clientId);
229 int64_t clientId,
232 String8 log = String8::format("addResource(pid %d, clientId %lld, resources %s)"
    [all...]
  /device/google/contexthub/firmware/os/inc/
syscallDo.h 127 static inline bool eOsSensorRequest(uint32_t clientId, uint32_t sensorHandle, uint32_t rate, uint64_t latency)
132 return syscallDo5P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_MAIN, SYSCALL_OS_MAIN_SENSOR, SYSCALL_OS_MAIN_SENSOR_REQUEST), clientId, sensorHandle, rate, latency_lo, latency_hi);
135 static inline bool eOsSensorRequestRateChange(uint32_t clientId, uint32_t sensorHandle, uint32_t newRate, uint64_t newLatency)
140 return syscallDo5P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_MAIN, SYSCALL_OS_MAIN_SENSOR, SYSCALL_OS_MAIN_SENSOR_RATE_CHG), clientId, sensorHandle, newRate, newLatency_lo, newLatency_hi);
143 static inline bool eOsSensorRelease(uint32_t clientId, uint32_t sensorHandle)
145 return syscallDo2P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_MAIN, SYSCALL_OS_MAIN_SENSOR, SYSCALL_OS_MAIN_SENSOR_RELEASE), clientId, sensorHandle);
148 static inline bool eOsSensorTriggerOndemand(uint32_t clientId, uint32_t sensorHandle)
150 return syscallDo2P(SYSCALL_NO(SYSCALL_DOMAIN_OS, SYSCALL_OS_MAIN, SYSCALL_OS_MAIN_SENSOR, SYSCALL_OS_MAIN_SENSOR_TRIGGER), clientId, sensorHandle);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiAwareManagerFacade.java 121 j.put(NS_KEY_CLIENT_ID, ns.clientId);
148 int type = 0, role = 0, clientId = 0, sessionId = 0, peerId = 0;
161 clientId = j.getInt((NS_KEY_CLIENT_ID));
185 return new WifiAwareNetworkSpecifier(type, role, clientId, sessionId, peerId, peerMac, pmk,
412 @RpcParameter(name = "clientId", description = "The client ID returned when a connection was created") Integer clientId)
416 session = mSessions.get(clientId);
420 "Calling WifiAwareDisconnect before session (client ID " + clientId
428 @RpcParameter(name = "clientId", description = "The client ID returned when a connection was created") Integer clientId,
    [all...]
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
SSLSessionContextTest.java 85 byte[] clientId = clientIds.nextElement();
86 assertEquals(32, clientId.length);
92 assertTrue(Arrays.equals(clientId, serverId));
121 byte[] clientId = client.getIds().nextElement();
122 assertNotNull(client.getSession(clientId));
123 assertTrue(Arrays.equals(clientId, client.getSession(clientId).getId()));
  /external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/javax/net/ssl/
SSLSessionContextTest.java 90 byte[] clientId = clientIds.nextElement();
91 assertEquals(32, clientId.length);
97 assertTrue(Arrays.equals(clientId, serverId));
126 byte[] clientId = client.getIds().nextElement();
127 assertNotNull(client.getSession(clientId));
128 assertTrue(Arrays.equals(clientId, client.getSession(clientId).getId()));
  /external/nos/host/android/hals/keymaster/include/
KeymasterDevice.h 67 const hidl_vec<uint8_t>& clientId,
81 const hidl_vec<uint8_t>& clientId, const hidl_vec<uint8_t>& appData,

Completed in 2495 milliseconds

1 2