HomeSort by relevance Sort by last modified time
    Searched refs:config (Results 101 - 125 of 9024) sorted by null

1 2 3 45 6 7 8 91011>>

  /device/google/contexthub/firmware/
nanohub_aux_os_config.mk 19 include $(NANOHUB_OS_PATH)/build/config.mk
  /external/arm-neon-tests/
retarget.c 40 struct __initial_stackheap config; local
42 config.heap_base = (unsigned int)&Image$$HEAP$$ZI$$Base; // placed by scatterfile
43 config.stack_base = SP; // inherit SP from the execution environment
45 return config;
  /external/autotest/scheduler/
scheduler_config.py 30 Reads the attributes (listed in `FIELDS`) from the global config
33 config = global_config.global_config
34 config.parse_config_file()
36 setattr(self, field, config.get_config_value(CONFIG_SECTION,
41 config = SchedulerConfig() variable
  /external/curl/src/
tool_operate.h 26 CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[]);
tool_operate.c 253 struct OperationConfig *config)
264 CURL *curl = config->easy;
281 heads.config = config;
290 if(!config->url_list || !config->url_list->url) {
306 if(!config->cacert &&
307 !config->capath &&
308 !config->insecure_ok) {
312 config->cacert = strdup(env)
    [all...]
  /external/elfutils/libasm/
disasm_end.c 31 # include <config.h>
  /external/elfutils/libdwfl/
libdwfl_crc32.c 29 # include <config.h>
  /external/elfutils/libebl/
eblelfclass.c 31 # include <config.h>
eblelfdata.c 31 # include <config.h>
eblelfmachine.c 31 # include <config.h>
eblsysvhashentrysize.c 31 # include <config.h>
  /external/elfutils/libelf/
elf_fill.c 31 # include <config.h>
libelf_crc32.c 29 # include <config.h>
  /external/freetype/devel/
ft2build.h 35 #include <freetype/config/ftheader.h>
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillType.java 11 static final Bitmap.Config DEFAULT_CONFIG = Bitmap.Config.RGB_565;
14 private final Bitmap.Config config; field in class:PreFillType
24 * @param config The {@link android.graphics.Bitmap.Config} of the {@link android.graphics.Bitmap Bitmaps} to
29 PreFillType(int width, int height, Bitmap.Config config, int weight) {
30 if (config == null) {
31 throw new NullPointerException("Config must not be null")
106 private Bitmap.Config config; field in class:PreFillType.Builder
    [all...]
  /external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
configcheck.sh 2 # Usage: configcheck.sh .config .config-template
22 T=${TMPDIR-/tmp}/abat-chk-config.sh.$$
26 cat $1 > $T/.config
31 print "if grep -q \"" $0 "\" < '"$T/.config"'";
36 print "\tif grep -q \"" $2 "\" < '"$T/.config"'";
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreatePixmapSurface.java 1 // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
6 EGLConfig config,
  /packages/apps/Launcher3/go/src_flags/com/android/launcher3/config/
FeatureFlags.java 17 package com.android.launcher3.config;
  /test/vts-testcase/fuzz/script/
update_configs.py 19 Config Files:
30 from config.config_gen import ConfigGen
33 print 'Updating config files.'
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
ISetOptionReceiver.java 18 import com.android.tradefed.config.Option;
  /external/syslinux/com32/hdt/
hdt-dump.h 38 #define APPEND_ARRAY ZZJSON *temp_array; temp_array = zzjson_array_append(config, *item, zzjson_create_object(config,
39 #define APPEND_OBJECT_ARRAY(value) ZZJSON *temp_ar; temp_ar = zzjson_array_append(config, *item, value); *item=temp_ar;
40 #define CREATE_ARRAY *item = zzjson_create_array(config, zzjson_create_object(config,
41 #define add_ai(name,value) name,zzjson_create_number_i(config,value),
43 #define add_as(name,value) name,zzjson_create_string(config,value),
49 #define CREATE_NEW_OBJECT *item = zzjson_create_object(config, NULL);
50 #define FLUSH_OBJECT flush(config, item);
53 #define add_i(name,value) *item = zzjson_object_append(config, *item, name, zzjson_create_number_i(config, value)
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
AudioRecordingLocal.cpp 45 struct pcm_config config; local
47 memset(&config, 0, sizeof(config));
48 config.channels = 2;
49 config.rate = samplingRate;
50 config.period_size = 1024;
51 config.period_count = 32;
52 config.format = PCM_FORMAT_S16_LE;
53 config.start_threshold = 0;
54 config.stop_threshold = 0
    [all...]
  /external/perfetto/src/ftrace_reader/
ftrace_config.cc 38 std::set<std::string> FtraceEventsAsSet(const FtraceConfig& config) {
40 for (const std::string& event : config.ftrace_events())
46 FtraceConfig config; local
48 *config.add_ftrace_events() = name;
49 return config;
52 bool RequiresAtrace(const FtraceConfig& config) {
53 return !config.atrace_categories().empty() || !config.atrace_apps().empty();
56 bool ValidConfig(const FtraceConfig& config) {
57 for (const std::string& event_name : config.ftrace_events())
    [all...]
  /external/webrtc/webrtc/test/
common_unittest.cc 35 TEST(Config, ReturnsDefaultInstanceIfNotConfigured) {
36 Config config; local
37 const MyExperiment& my_exp = config.Get<MyExperiment>();
42 TEST(Config, ReturnOptionWhenSet) {
43 Config config; local
44 config.Set<MyExperiment>(new MyExperiment(5, 1));
45 const MyExperiment& my_exp = config.Get<MyExperiment>();
50 TEST(Config, SetNullSetsTheOptionBackToDefault)
51 Config config; local
78 Config config; local
    [all...]
  /frameworks/base/core/java/android/security/net/config/
ConfigNetworkSecurityPolicy.java 17 package android.security.net.config;
27 public ConfigNetworkSecurityPolicy(ApplicationConfig config) {
28 mConfig = config;

Completed in 421 milliseconds

1 2 3 45 6 7 8 91011>>