Home
last modified time | relevance | path

Searched refs:config_header (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/utils/lint/
Dcpp_lint.py41 config_header = include_config_re.match(line)
42 if config_header:
43 curr_config_header = config_header.group(1)
/external/llvm/utils/lint/
Dcpp_lint.py41 config_header = include_config_re.match(line)
42 if config_header:
43 curr_config_header = config_header.group(1)
/external/toolchain-utils/automation/clients/helper/
Dchromeos.py73 config_header = 'add_config(%r, [%s])' % (config_name,
77 quoted_config_header = '%r' % config_header
/external/libusb/libusb/os/
Dwindows_usbdk.c396 PUSB_CONFIGURATION_DESCRIPTOR config_header; in usbdk_get_config_descriptor() local
402 config_header = (PUSB_CONFIGURATION_DESCRIPTOR)priv->config_descriptors[config_index]; in usbdk_get_config_descriptor()
404 size = min(config_header->wTotalLength, len); in usbdk_get_config_descriptor()
405 memcpy(buffer, config_header, size); in usbdk_get_config_descriptor()
Dwindows_winusb.c1701 PUSB_CONFIGURATION_DESCRIPTOR config_header; in windows_get_config_descriptor() local
1711 config_header = (PUSB_CONFIGURATION_DESCRIPTOR)priv->config_descriptor[config_index]; in windows_get_config_descriptor()
1713 size = MIN(config_header->wTotalLength, len); in windows_get_config_descriptor()
1724 PUSB_CONFIGURATION_DESCRIPTOR config_header; in windows_get_config_descriptor_by_value() local
1734 config_header = (PUSB_CONFIGURATION_DESCRIPTOR)priv->config_descriptor[index]; in windows_get_config_descriptor_by_value()
1735 if (config_header->bConfigurationValue == bConfigurationValue) { in windows_get_config_descriptor_by_value()
1737 return (int)config_header->wTotalLength; in windows_get_config_descriptor_by_value()