/external/tcpdump/tests/ |
D | dcb_ets.out | 23 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 27 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) 31 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) 36 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) 40 Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) 54 Organization specific TLV (127), length 25: OUI Ethernet bridged (0x0080c2) 120 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 124 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) 128 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) 133 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) [all …]
|
D | dcb_pfc.out | 22 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 26 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) 30 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) 35 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) 39 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 56 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 60 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) 64 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) 69 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) 73 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) [all …]
|
D | dcb_qcn.out | 34 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 38 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) 42 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) 47 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) 51 Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) 65 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 69 Organization specific TLV (127), length 7: OUI Ethernet bridged (0x0080c2) 73 Organization specific TLV (127), length 14: OUI Ethernet bridged (0x0080c2) 78 Organization specific TLV (127), length 13: OUI Ethernet bridged (0x0080c2) 82 Organization specific TLV (127), length 5: OUI Ethernet bridged (0x0080c2) [all …]
|
D | lldp_cdp-ev.out | 52 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 55 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) 74 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 77 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) 96 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 99 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) 118 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 121 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) 178 Organization specific TLV (127), length 6: OUI Ethernet bridged (0x0080c2) 181 Organization specific TLV (127), length 9: OUI IEEE 802.3 Private (0x00120f) [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/ |
D | MathIllegalStateException.java | 40 private final Localizable specific; field in MathIllegalStateException 57 public MathIllegalStateException(Localizable specific, in MathIllegalStateException() argument 60 this(null, specific, general, args); in MathIllegalStateException() 72 Localizable specific, in MathIllegalStateException() argument 76 this.specific = specific; in MathIllegalStateException() 104 return specific; in getSpecificPattern() 125 return MessageFactory.buildMessage(locale, specific, general, arguments); in getMessage()
|
D | MathUnsupportedOperationException.java | 43 private final Localizable specific; field in MathUnsupportedOperationException 60 public MathUnsupportedOperationException(Localizable specific, in MathUnsupportedOperationException() argument 62 this.specific = specific; in MathUnsupportedOperationException() 68 return specific; in getSpecificPattern() 90 specific, in getMessage()
|
D | MathIllegalArgumentException.java | 43 private final Localizable specific; field in MathIllegalArgumentException 59 protected MathIllegalArgumentException(Localizable specific, in MathIllegalArgumentException() argument 62 this.specific = specific; in MathIllegalArgumentException() 77 return specific; in getSpecificPattern() 98 return MessageFactory.buildMessage(locale, specific, general, arguments); in getMessage()
|
D | ConvergenceException.java | 44 public ConvergenceException(Localizable specific) { in ConvergenceException() argument 45 this(specific, in ConvergenceException() 55 public ConvergenceException(Localizable specific, in ConvergenceException() argument 57 super(specific, in ConvergenceException()
|
D | NotPositiveException.java | 46 public NotPositiveException(Localizable specific, in NotPositiveException() argument 48 super(specific, value, 0, true); in NotPositiveException()
|
D | NotStrictlyPositiveException.java | 46 public NotStrictlyPositiveException(Localizable specific, in NotStrictlyPositiveException() argument 48 super(specific, value, 0, false); in NotStrictlyPositiveException()
|
D | ZeroException.java | 45 public ZeroException(Localizable specific) { in ZeroException() argument 46 super(specific, LocalizedFormats.ZERO_NOT_ALLOWED, 0); in ZeroException()
|
D | NullArgumentException.java | 47 public NullArgumentException(Localizable specific) { in NullArgumentException() argument 48 super(specific, LocalizedFormats.NULL_NOT_ALLOWED); in NullArgumentException()
|
D | NoDataException.java | 44 public NoDataException(Localizable specific) { in NoDataException() argument 45 super(specific, LocalizedFormats.NO_DATA, (Object[]) null); in NoDataException()
|
/external/valgrind/docs/internals/ |
D | directory-structure.txt | 28 - docs/ main, non-tool-specific docs 35 Arch-specific, OS-specific, or platform-specific things are sprinkled 37 architecture-specific things, for example. 39 Sometimes we have a whole file holding things specific to a particular 46 A final case: arch-specific regression tests for tools go in a
|
D | porting-HOWTO.txt | 16 test subdirectories. (You should make arch-specific tests later to be 26 - Copy all the arch-specific and platform-specific files into the new 62 - A lot of the arch-specific stuff has been abstracted out of the core, but 63 there undoubtedly remains some arch-specific stuff in there. Abstract it out 75 - Ensure the regression tests work, and add some arch-specific tests to 90 - Implement all the necessary OS-specific and platform-specific types,
|
/external/webrtc/webrtc/test/ |
D | configurable_frame_size_encoder.cc | 54 CodecSpecificInfo specific; in Encode() local 55 memset(&specific, 0, sizeof(specific)); in Encode() 56 callback_->Encoded(encodedImage, &specific, fragmentation); in Encode()
|
/external/tpm2/ |
D | VendorString.h | 22 Please modify VendorString.h to provide a specific \ 40 Please modify include\VendorString.h to provide a vednor specific \ 61 Please modify include\VendorString.h to provide a vendor specific firmware \
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/ |
D | MessageFactory.java | 60 Localizable specific, in buildMessage() argument 68 if (specific != null) { in buildMessage() 72 … final MessageFormat fmt = new MessageFormat(specific.getLocalizedString(locale), locale); in buildMessage()
|
/external/llvm/lib/Support/Unix/ |
D | README.txt | 9 Posix - code that is specific to Posix variants of UNIX 10 SUS - code that is specific to the Single Unix Specification 11 SysV - code that is specific to System V variants of UNIX
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-4.2 | 14 2. Support for compressor specific options 35 Compression algorithms can now support compression specific options. These 38 The compression specific options supported by each compressor can be 42 Compressors available and compressor specific options:
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-09-16.data | 2 # as space/trimmed/specific/none 3 as space
trimmed
specific
none
|
/external/llvm/lib/Support/ |
D | README.txt.system | 5 and all operating system specific functionality. It is not intended to be a 9 The software located here, of necessity, has very specific and stringent design 25 3. No exposed system-specific functions. 26 4. No exposed system-specific data.
|
/external/llvm/test/YAMLParser/ |
D | spec-09-16.test | 4 # as space/trimmed/specific/none 5 as space
trimmed
specific
none
|
/external/minijail/ |
D | Makefile | 59 @printf "Generating target-arch specific $@... " 74 @printf "Generating target-arch specific $@... "
|
/external/llvm/test/Unit/ |
D | lit.cfg | 47 # Otherwise, we haven't loaded the site specific configuration (the user is 68 lit_config.fatal('No site specific configuration available!') 77 lit_config.fatal('No site specific configuration available!') 79 # Check that the site specific configuration exists. 82 lit_config.fatal('No site specific configuration available!')
|