Searched refs:config (Results 201 - 225 of 4392) sorted by relevance

1234567891011>>

/external/chromium_org/device/serial/
H A Dserial_io_handler_posix.cc95 struct termios* config,
107 cfsetispeed(config, B38400);
108 cfsetospeed(config, B38400);
112 cfsetispeed(config, speed);
113 cfsetospeed(config, speed);
247 struct termios config; local
248 tcgetattr(file().GetPlatformFile(), &config);
252 cfsetispeed(&config, bitrate_opt);
253 cfsetospeed(&config, bitrate_opt);
257 file().GetPlatformFile(), &config, option
94 SetCustomBitrate(base::PlatformFile file, struct termios* config, int bitrate) argument
311 struct termios config; local
374 struct termios config; local
[all...]
H A Dserial_io_handler_win.cc171 DCB config = {0}; local
172 config.DCBlength = sizeof(config);
173 if (!GetCommState(file().GetPlatformFile(), &config)) {
177 config.fBinary = TRUE;
178 config.fParity = FALSE;
179 config.fAbortOnError = TRUE;
180 config.fOutxCtsFlow = FALSE;
181 config.fOutxDsrFlow = FALSE;
182 config
300 DCB config = {0}; local
362 DCB config = {0}; local
[all...]
/external/dnsmasq/src/
H A Ddhcp.c494 struct dhcp_config *config; local
496 for (config = configs; config; config = config->next)
497 if ((config->flags & CONFIG_ADDR) && config->addr.s_addr == addr.s_addr)
498 return config;
635 static int is_addr_in_context(struct dhcp_context *context, struct dhcp_config *config) argument
639 if (!(config
648 config_has_mac(struct dhcp_config *config, unsigned char *hwaddr, int len, int type) argument
669 struct dhcp_config *config, *candidate; local
727 struct dhcp_config *config; local
921 struct dhcp_config *config; local
[all...]
/external/deqp/framework/platform/win32/
H A DtcuWGLContextFactory.cpp66 WGLContext (HINSTANCE instance, const wgl::Core& wglCore, const glu::RenderConfig& config);
87 WGLContext::WGLContext (HINSTANCE instance, const wgl::Core& wglCore, const glu::RenderConfig& config) argument
88 : m_contextType (config.type)
90 config.width != glu::RenderConfig::DONT_CARE ? config.width : DEFAULT_WINDOW_WIDTH,
91 config.height != glu::RenderConfig::DONT_CARE ? config.height : DEFAULT_WINDOW_HEIGHT)
94 if (config.surfaceType != glu::RenderConfig::SURFACETYPE_WINDOW &&
95 config.surfaceType != glu::RenderConfig::SURFACETYPE_DONT_CARE)
101 if (config
161 createContext(const glu::RenderConfig& config, const tcu::CommandLine&) const argument
[all...]
/external/aac/libAACenc/src/
H A Daacenc.cpp266 void FDKaacEnc_AacInitDefaultConfig(AACENC_CONFIG *config) argument
269 FDKmemclear(config, sizeof(AACENC_CONFIG));
272 config->anc_Rate = 0; /* no ancillary data */
273 config->ancDataBitRate = 0; /* no additional consumed bitrate */
276 config->bitRate = -1; /* bitrate must be set*/
277 config->averageBits = -1; /* instead of bitrate/s we can configure bits/superframe */
278 config->bitrateMode = 0;
279 config->bandWidth = 0; /* get bandwidth from table */
280 config->useTns = TNS_ENABLE_MASK; /* tns enabled completly */
281 config
376 FDKaacEnc_Initialize(HANDLE_AAC_ENC hAacEnc, AACENC_CONFIG *config, HANDLE_TRANSPORTENC hTpEnc, ULONG initFlags) argument
[all...]
/external/qemu/android/avd/
H A Dhw-config.h37 #include "android/avd/hw-config-defs.h"
53 /* Write a hardware configuration to a config file object.
61 void androidHwConfig_done( AndroidHwConfig* config );
64 int androidHwConfig_isScreenNoTouch( AndroidHwConfig* config );
66 int androidHwConfig_isScreenTouch( AndroidHwConfig* config );
68 int androidHwConfig_isScreenMultiTouch( AndroidHwConfig* config );
79 int androidHwConfig_getKernelDeviceNaming( AndroidHwConfig* config );
86 int androidHwConfig_getKernelYaffs2Support( AndroidHwConfig* config );
90 const char* androidHwConfig_getKernelSerialPrefix( AndroidHwConfig* config );
/external/sonivox/jet_tools/JetCreator/
H A DJetFile.py61 # config file defines
252 self.config = config = ConfigParser.ConfigParser()
258 config.read(self.config_file)
264 config = self.config
265 for section in config.sections():
267 for option, value in config.items(section):
273 config = self.config
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
H A Dglxinit.c273 __glXInitializeVisualConfigFromTags(__GLcontextModes * config, int count, argument
281 config->visualID = *bp++;
283 config->visualType = _gl_convert_from_x_visual_type(*bp++);
285 config->rgbMode = *bp++;
287 config->redBits = *bp++;
288 config->greenBits = *bp++;
289 config->blueBits = *bp++;
290 config->alphaBits = *bp++;
291 config->accumRedBits = *bp++;
292 config
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/x11/
H A Dglxinit.c273 __glXInitializeVisualConfigFromTags(__GLcontextModes * config, int count, argument
281 config->visualID = *bp++;
283 config->visualType = _gl_convert_from_x_visual_type(*bp++);
285 config->rgbMode = *bp++;
287 config->redBits = *bp++;
288 config->greenBits = *bp++;
289 config->blueBits = *bp++;
290 config->alphaBits = *bp++;
291 config->accumRedBits = *bp++;
292 config
[all...]
/external/chromium_org/net/proxy/
H A Dproxy_config.h154 // Indicates an invalid proxy config.
158 ProxyConfig(const ProxyConfig& config);
160 ProxyConfig& operator=(const ProxyConfig& config);
167 // Returns true if the given config is equivalent to this config. The
171 // Returns true if this config contains any "automatic" settings. See the
232 ProxyConfig config; local
233 config.set_auto_detect(true);
234 return config;
238 ProxyConfig config; local
[all...]
/external/chromium_org/net/quic/crypto/
H A Dquic_crypto_client_config_test.cc70 QuicCryptoClientConfig config; local
74 config.FillInchoateClientHello(server_id, QuicVersionMax(), &state,
83 QuicCryptoClientConfig config; local
84 config.SetDefaults();
85 if (config.aead.size() > 1)
86 EXPECT_NE(kAESG, config.aead[0]);
87 config.PreferAesGcm();
88 EXPECT_EQ(kAESG, config.aead[0]);
93 QuicCryptoClientConfig config; local
97 config
107 QuicCryptoClientConfig config; local
122 QuicCryptoClientConfig config; local
164 QuicCryptoClientConfig config; local
172 QuicCryptoClientConfig config; local
194 QuicCryptoClientConfig config; local
221 QuicCryptoClientConfig config; local
238 QuicCryptoClientConfig config; local
[all...]
/external/f2fs-tools/lib/
H A Dlibf2fs_io.c26 struct f2fs_configuration config; variable in typeref:struct:f2fs_configuration
33 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
35 if (read(config.fd, buf, len) < 0)
42 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
44 if (write(config.fd, buf, len) < 0)
56 if (lseek64(config.dump_fd, (off64_t)offset, SEEK_SET) < 0)
58 if (write(config.dump_fd, buf, len) < 0)
68 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
70 if (write(config.fd, buf, len) < 0)
/external/markdown/markdown/extensions/
H A Dwikilinks.py93 self.config = {
109 wikilinkPattern = WikiLinks(WIKILINK_RE, self.config)
115 def __init__(self, pattern, config):
117 self.config = config
123 url = self.config['build_url'][0](label, base_url, end_url)
134 """ Return meta data or config data. """
135 base_url = self.config['base_url'][0]
136 end_url = self.config['end_url'][0]
137 html_class = self.config['html_clas
[all...]
H A Dhtml_tidy.py38 self.config = dict(output_xhtml=1,
43 self.config[c[0]] = c[1]
47 md.tidy_options = self.config
/external/chromium_org/chrome/browser/chromeos/ui/
H A Dmobile_config_ui.cc20 MobileConfig* config = MobileConfig::GetInstance(); local
21 if (!config->IsReady()) {
25 const MobileConfig::LocaleConfig* locale_config = config->GetLocaleConfig();
/external/chromium_org/chrome/browser/predictors/
H A Dresource_prefetch_predictor_factory.cc45 ResourcePrefetchPredictorConfig config; local
46 if (!IsSpeculativeResourcePrefetchingEnabled(profile, &config))
49 return new ResourcePrefetchPredictor(config, profile);
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fixtures/
H A Dafter_initialization_fixture.cc26 webrtc::Config config; local
27 config.Set<webrtc::ExperimentalAgc>(new webrtc::ExperimentalAgc(false));
28 webrtc::AudioProcessing* audioproc = webrtc::AudioProcessing::Create(config);
/external/f2fs-tools/mkfs/
H A Df2fs_format.c24 extern struct f2fs_configuration config;
60 char *ext_str = config.extension_list;
91 free(config.extension_list);
112 log_sectorsize = log_base_2(config.sector_size);
113 log_sectors_per_block = log_base_2(config.sectors_per_blk);
115 log_blks_per_seg = log_base_2(config.blks_per_seg);
123 super_block.segs_per_sec = cpu_to_le32(config.segs_per_sec);
124 super_block.secs_per_zone = cpu_to_le32(config.secs_per_zone);
126 segment_size_bytes = blk_size_bytes * config.blks_per_seg;
128 blk_size_bytes * config
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/
H A Djquery.tablesorter.min.js3 function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,rows,-1,i);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,nod
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_test_config.cc5 #include "gpu/config/gpu_test_config.h"
9 #include "gpu/config/gpu_info.h"
10 #include "gpu/config/gpu_info_collector.h"
11 #include "gpu/config/gpu_test_expectations_parser.h"
109 bool GPUTestConfig::OverlapsWith(const GPUTestConfig& config) const {
111 DCHECK(config.IsValid());
112 if (config.os_ != kOsUnknown && os_ != kOsUnknown &&
113 (os_ & config.os_) == 0)
115 if (config.gpu_vendor_.size() > 0 && gpu_vendor_.size() > 0) {
117 for (size_t i = 0; i < config
225 GPUTestConfig config; local
[all...]
/external/bison/lib/
H A Ddup-safer-flag.c21 #include <config.h>
H A Dgetline.c19 #include <config.h>
H A Dspawnattr_setsigmask.c17 #include <config.h>
H A Dstripslash.c19 #include <config.h>
H A Dstrnlen.c18 #include <config.h>

Completed in 8234 milliseconds

1234567891011>>