HomeSort by relevance Sort by last modified time
    Searched refs:cfg (Results 251 - 275 of 943) sorted by null

<<11121314151617181920>>

  /system/bt/tools/mcap_tool/
mcap_test_mcl.cc 53 uint8_t dep_id, uint8_t cfg) {
67 mdl_id, dep_id, cfg));
72 uint16_t mdl_id, uint8_t peer_dep_id, uint8_t cfg,
81 mcap_mdl = AllocateMdl(mdep_handle, mdl_id, peer_dep_id, cfg);
102 uint8_t my_dep_id, uint8_t cfg) {
110 mcap_mdl = AllocateMdl(mdep_handle, mdl_id, my_dep_id, cfg);
119 mcap_mdl->UpdateContext(mdep_handle, my_dep_id, cfg);
  /tools/acloud/public/
acloud_main.py 323 cfg = config_mgr.Load()
324 cfg.OverrideWithArgs(args)
327 device_driver.CheckAccess(cfg)
331 cfg,
341 report = device_driver.DeleteAndroidVirtualDevices(cfg,
344 report = device_driver.Cleanup(cfg, args.expiration_mins)
346 report = device_driver.AddSshRsa(cfg, args.user, args.ssh_rsa_path)
  /cts/apps/CameraITS/tools/
hardware.py 56 def __init__(self, name, vid, pid, cfg, inf):
59 self._build_device(name, vid, pid, cfg, inf)
77 def _build_device(self, name, vid, pid, cfg, inf):
84 cfg: configuration
99 entry[self.KEY_CFG] = int(cfg)
181 def _read_tty_name(self, dir_entry, inf, cfg):
187 cfg: Configuration number of the device
193 '%s:%d.%d' % (dir_entry, cfg, inf))
253 inf_re = re.compile(r'\d+-\d+(\.\d+){0,}:(?P<cfg>\d+)\.(?P<inf>\d+)$')
263 cfg = int(inf_dict['cfg']
    [all...]
  /external/guice/extensions/persist/lib/
hibernate-annotations.jar 
  /external/libevent/test/
bench_http.c 87 struct event_config *cfg = event_config_new(); local
144 event_config_set_flag(cfg,EVENT_BASE_FLAG_STARTUP_IOCP);
153 base = event_base_new_with_config(cfg);
  /external/libvpx/libvpx/test/
invalid_file_test.cc 87 vpx_codec_dec_cfg_t cfg = vpx_codec_dec_cfg_t(); local
88 cfg.threads = input.threads;
114 ASSERT_NO_FATAL_FAILURE(RunLoop(video.get(), cfg));
level_test.cc 125 vpx_codec_enc_cfg_t cfg; local
126 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_enc_config_default(codec, &cfg, 0));
127 cfg.rc_target_bitrate = 100;
128 EXPECT_EQ(VPX_CODEC_OK, vpx_codec_enc_init(&enc, codec, &cfg, 0));
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.h 41 void vp9_init_dsmotion_compensation(search_site_config *cfg, int stride);
42 void vp9_init3smotion_compensation(search_site_config *cfg, int stride);
98 const MACROBLOCK *x, const search_site_config *cfg, MV *ref_mv, MV *best_mv,
  /external/skia/src/sksl/
SkSLCFGGenerator.h 19 // index of a block within CFG.fBlocks
85 * expression after the deleted expression. Otherwise returns false (and the CFG will need to be
93 * pointing to the same expression it did initially. Otherwise returns false (and the CFG will
108 * newly inserted expression. Otherwise returns false (and the CFG will need to be regenerated).
120 struct CFG {
142 // which we set the CFG up.
155 CFG getCFG(FunctionDefinition& f);
158 void addStatement(CFG& cfg, std::unique_ptr<Statement>* s);
160 void addExpression(CFG& cfg, std::unique_ptr<Expression>* e, bool constantPropagate)
    [all...]
  /external/skqp/src/sksl/
SkSLCFGGenerator.h 19 // index of a block within CFG.fBlocks
85 * expression after the deleted expression. Otherwise returns false (and the CFG will need to be
93 * pointing to the same expression it did initially. Otherwise returns false (and the CFG will
108 * newly inserted expression. Otherwise returns false (and the CFG will need to be regenerated).
120 struct CFG {
142 // which we set the CFG up.
155 CFG getCFG(FunctionDefinition& f);
158 void addStatement(CFG& cfg, std::unique_ptr<Statement>* s);
160 void addExpression(CFG& cfg, std::unique_ptr<Expression>* e, bool constantPropagate)
    [all...]
  /external/syslinux/txt/
Makefile 31 DOCS = syslinux.txt syslinux-cli.txt syslinux.cfg.txt \
33 MAN_DOCS = man/syslinux.1 man/syslinux-cli.1 man/syslinux.cfg.5 \
67 syslinux.cfg.txt: com-bug.txt com-rpt.txt
  /tools/acloud/public/acloud_kernel/
kernel_swapper.py 58 def __init__(self, cfg, instance_name):
62 cfg: AcloudConfig object, used to create credentials.
65 credentials = auth.CreateCredentials(cfg, ALL_SCOPES)
67 cfg, credentials)
  /system/bt/audio_a2dp_hw/src/
audio_a2dp_hw.cc 126 struct a2dp_config cfg; member in struct:a2dp_stream_common
203 static int calc_audiotime_usec(struct a2dp_config cfg, int bytes) {
204 int chan_count = audio_channel_count_from_out_mask(cfg.channel_mask);
207 switch (cfg.format) {
224 ASSERTC(false, "unsupported sample format", cfg.format);
231 cfg.rate);
499 common->cfg.rate = sample_rate;
508 common->cfg.channel_mask = AUDIO_CHANNEL_IN_MONO;
511 common->cfg.channel_mask = AUDIO_CHANNEL_IN_STEREO;
519 common->cfg.format = AUDIO_FORMAT_PCM_16_BIT
    [all...]
  /system/bt/audio_hearing_aid_hw/src/
audio_hearing_aid_hw.cc 113 struct ha_config cfg; member in struct:ha_stream_common
187 static int calc_audiotime_usec(struct ha_config cfg, int bytes) {
188 int chan_count = audio_channel_count_from_out_mask(cfg.channel_mask);
191 switch (cfg.format) {
208 ASSERTC(false, "unsupported sample format", cfg.format);
215 cfg.rate);
480 common->cfg.rate = sample_rate;
489 common->cfg.channel_mask = AUDIO_CHANNEL_IN_MONO;
492 common->cfg.channel_mask = AUDIO_CHANNEL_IN_STEREO;
500 common->cfg.format = AUDIO_FORMAT_PCM_16_BIT
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_build.c 198 wpabuf_put_data(buf, p2p->cfg->dev_addr, ETH_ALEN);
210 } else if (p2p->cfg->config_methods) {
211 methods |= p2p->cfg->config_methods &
222 wpabuf_put_data(buf, p2p->cfg->pri_dev_type,
223 sizeof(p2p->cfg->pri_dev_type));
226 wpabuf_put_u8(buf, p2p->cfg->num_sec_dev_types);
229 for (i = 0; i < p2p->cfg->num_sec_dev_types; i++)
230 wpabuf_put_data(buf, p2p->cfg->sec_dev_type[i],
234 nlen = p2p->cfg->dev_name ? os_strlen(p2p->cfg->dev_name) : 0
    [all...]
  /device/google/taimen/
device.mk 47 device/google/taimen/init.insmod.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/init.insmod.cfg \
48 device/google/taimen/init.insmod_charger.cfg:$(TARGET_COPY_OUT_VENDOR)/etc/init.insmod_charger.cfg
  /external/freetype/
configure 100 if test ! -r $abs_curr_dir/modules.cfg; then
101 echo "Copying \`modules.cfg'"
102 cp $abs_ft2_dir/modules.cfg $abs_curr_dir
122 CFG=
128 x--srcdir=* ) CFG="$CFG '$x'/builds/unix" ;;
129 *) CFG="$CFG '$x'" ;;
133 CFG=$CFG $MAKE setup uni
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_query_hw_metric.c 154 const struct nv50_hw_metric_query_cfg *cfg; local
170 cfg = nv50_hw_metric_query_get_cfg(nv50, hq);
172 for (i = 0; i < cfg->num_queries; i++) {
173 hmq->queries[i] = nv50_hw_sm_create_query(nv50, cfg->queries[i]);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_lower_d2x.cpp 35 foreach_block_and_inst_safe(block, fs_inst, inst, cfg) {
brw_fs_validate.cpp 44 foreach_block_and_inst (block, fs_inst, inst, cfg) {
  /external/perfetto/src/traced/probes/filesystem/
inode_file_data_source_unittest.cc 39 DataSourceConfig cfg,
46 : InodeFileDataSource(std::move(cfg),
68 DataSourceConfig cfg) {
70 cfg, &task_runner_, 0, &static_file_map_, &cache_,
  /external/perfetto/src/tracing/test/
mock_producer.cc 85 const DataSourceConfig& cfg) {
86 EXPECT_FALSE(data_source_instances_.count(cfg.name()));
87 auto target_buffer = static_cast<BufferID>(cfg.target_buffer());
88 data_source_instances_.emplace(cfg.name(),
  /external/toolchain-utils/bestflags/examples/omnetpp/
build_omnetpp 45 content=$(sed s/amd64-m64-gcc41-kk/test$file/ config/linux64-amd64-pgi.cfg)
46 echo "$content" | sed s/-O2/-O1\ "$flags"/ >config/linux64-amd64-pgi$file.cfg
  /hardware/interfaces/tests/libhwbinder/1.0/default/
ScheduleTest.h 29 Return<uint32_t> send(uint32_t cfg, uint32_t callerSta) override;
  /prebuilts/go/darwin-x86/src/cmd/go/internal/base/
tool.go 14 "cmd/go/internal/cfg"
34 if len(cfg.BuildToolexec) > 0 {

Completed in 444 milliseconds

<<11121314151617181920>>