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

1 2

  /external/toolchain-utils/crosperf/
config.py 8 def GetConfig(key):
config_unittest.py 24 self.assertIsNone(config.GetConfig('rabbit'))
25 self.assertIsNone(config.GetConfig('key1'))
35 # Verify that GetConfig works and gets the expected values.
36 self.assertIs(config.GetConfig('key2'), 32)
37 self.assertIs(config.GetConfig('key3'), 'third value')
38 self.assertIs(config.GetConfig('key1'), 16)
experiment_runner.py 225 config.GetConfig('no_email')):
  /external/grpc-grpc/src/ruby/qps/src/proto/grpc/testing/
proxy-service_services_pb.rb 33 rpc :GetConfig, Void, ClientConfig
  /external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
ProxyClientServiceClient.php 39 public function GetConfig(\Grpc\Testing\PBVoid $argument,
41 return $this->_simpleRequest('/grpc.testing.ProxyClientService/GetConfig',
  /external/webrtc/talk/media/webrtc/
fakewebrtccall.cc 45 FakeAudioSendStream::GetConfig() const {
78 FakeAudioReceiveStream::GetConfig() const {
111 webrtc::VideoSendStream::Config FakeVideoSendStream::GetConfig() const {
215 webrtc::VideoReceiveStream::Config FakeVideoReceiveStream::GetConfig() {
258 webrtc::Call::Config FakeCall::GetConfig() const {
276 if (p->GetConfig().rtp.ssrc == ssrc) {
289 if (p->GetConfig().rtp.remote_ssrc == ssrc) {
399 if (receiver->GetConfig().rtp.remote_ssrc == ssrc)
406 if (receiver->GetConfig().rtp.remote_ssrc == ssrc) {
webrtcvideoengine2_unittest.cc     [all...]
fakewebrtccall.h 60 const webrtc::AudioSendStream::Config& GetConfig() const;
88 const webrtc::AudioReceiveStream::Config& GetConfig() const;
122 webrtc::VideoSendStream::Config GetConfig() const;
171 webrtc::VideoReceiveStream::Config GetConfig();
206 webrtc::Call::Config GetConfig() const;
webrtcvoiceengine_unittest.cc 131 return send_stream->GetConfig();
137 return recv_stream->GetConfig();
    [all...]
  /external/perfetto/src/tracing/api_impl/
consumer_api_test.cc 34 std::string GetConfig(uint32_t duration_ms) {
91 std::string cfg = GetConfig(1000);
115 std::string cfg = GetConfig(8000);
  /external/nos/host/generic/nugget/proto/nugget/app/weaver/
weaver.proto 34 rpc GetConfig (GetConfigRequest) returns (GetConfigResponse);
44 // GetConfig
  /external/nos/host/android/hals/weaver/test/
test.cpp 41 // GetConfig
50 EXPECT_CALL(mockService, GetConfig(_, _))
54 hal.getConfig([&](WeaverStatus status, WeaverConfig config) {
65 EXPECT_CALL(mockService, GetConfig(_, _)).WillOnce(Return(APP_ERROR_INTERNAL));
68 hal.getConfig([](WeaverStatus status, WeaverConfig config) {
77 EXPECT_CALL(mockService, GetConfig(_, _)).WillOnce(Return(APP_ERROR_RPC));
80 hal.getConfig([](WeaverStatus status, WeaverConfig config) {
  /external/pdfium/core/fpdfdoc/
cpdf_occontext.cpp 46 CPDF_Dictionary* GetConfig(CPDF_Document* pDoc,
104 CPDF_Dictionary* pConfig = GetConfig(m_pDocument.Get(), pOCGDict);
  /build/soong/ui/build/
path.go 103 config := paths.GetConfig(log.Basename)
136 if !paths.GetConfig(name).Symlink && !allowAllSymlinks {
  /external/grpc-grpc/src/php/tests/qps/
client.php 73 list($config, $status) = $proxystub->GetConfig(new Grpc\Testing\PBVoid())->wait();
  /external/nos/host/android/hals/weaver/
Weaver.cpp 45 Return<void> Weaver::getConfig(getConfig_cb _hidl_cb) {
50 const uint32_t appStatus = _weaver.GetConfig(request, &response);
53 LOG(ERROR) << "App GetConfig request failed with status " << appStatus;
  /external/nos/test/system-test-harness/src/
weaver_tests.cc 175 TEST_F(WeaverTest, GetConfig) {
180 ASSERT_NO_ERROR(service.GetConfig(request, &response), "");
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.h 69 int (*GetConfig)(Display *dpy, XVisualInfo *visinfo, int attrib, int *value);
glxapi.c 227 return t->GetConfig(dpy, visinfo, attrib, value);
  /frameworks/av/media/libstagefright/omx/
SoftOMXComponent.cpp 47 mComponent->GetConfig = GetConfigWrapper;
155 return me->getConfig(index, params);
273 OMX_ERRORTYPE SoftOMXComponent::getConfig(
  /build/soong/ui/build/paths/
config.go 69 func GetConfig(name string) PathConfig {
  /external/python/apitools/samples/servicemanagement_sample/servicemanagement_v1/
servicemanagement_v1_client.py 624 def GetConfig(self, request, global_params=None):
634 config = self.GetMethodConfig('GetConfig')
638 GetConfig.method_config = lambda: base_api.ApiMethodInfo(
640 method_id=u'servicemanagement.services.getConfig',
    [all...]
  /external/v8/tools/mb/
mb.py 296 vals = self.GetConfig()
312 vals = self.GetConfig()
480 def GetConfig(self):
    [all...]
  /build/soong/cmd/path_interposer/
main.go 65 config: paths.GetConfig,
  /external/python/cpython2/Modules/
almodule.c 261 GetConfig(alcobject *self, PyObject *args, int (*func)(ALconfig))
265 if (!PyArg_ParseTuple(args, ":GetConfig"))
290 return GetConfig(self, args, alGetWidth);
312 return GetConfig(self, args, alGetSampFmt);
332 return GetConfig(self, args, alGetChannels);
385 return GetConfig(self, args, alGetDevice);
405 return GetConfig(self, args, alGetQueueSize);
426 getconfig(alcobject *self, PyObject *args, long (*func)(ALconfig)) function
430 if (!PyArg_ParseTuple(args, ":GetConfig"))
448 return getconfig(self, args, ALgetqueuesize)
    [all...]

Completed in 751 milliseconds

1 2