Searched refs:probe (Results 1 - 25 of 116) sorted by relevance

12345

/external/libppp/src/
H A Dprobe.h26 * $FreeBSD: src/usr.sbin/ppp/probe.h,v 1.3.40.1 2010/12/21 17:10:29 kensmith Exp $
29 struct probe { struct
36 extern struct probe probe;
H A Dprobe.c26 * $FreeBSD: src/usr.sbin/ppp/probe.c,v 1.6.40.1 2010/12/21 17:10:29 kensmith Exp $
35 #include "probe.h"
39 struct probe probe; variable in typeref:struct:probe
70 probe.select_changes_time = select_changes_time() ? 1 : 0;
72 probe.select_changes_time ? "yes" : "no");
74 probe.ipv6_available = ipv6_available() ? 1 : 0;
76 probe.ipv6_available ? "yes" : "no");
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarAnalysisAbortedMessage.java37 public DecisionProbe probe; field in class:GrammarAnalysisAbortedMessage
39 public GrammarAnalysisAbortedMessage(DecisionProbe probe) { argument
41 this.probe = probe;
45 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
48 String fileName = probe.dfa.nfa.grammar.getFileName();
54 probe.dfa.getNFADecisionStartState().enclosingRule.name);
H A DGrammarNonDeterminismMessage.java44 public DecisionProbe probe; field in class:GrammarNonDeterminismMessage
47 public GrammarNonDeterminismMessage(DecisionProbe probe, argument
51 this.probe = probe;
54 if ( probe.dfa.isTokensRuleDecision() ) {
60 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
63 String fileName = probe.dfa.nfa.grammar.getFileName();
70 List labels = probe.getSampleNonDeterministicInputSequence(problemState);
71 String input = probe.getInputSequenceDisplay(labels);
74 if ( probe
[all...]
H A DGrammarUnreachableAltsMessage.java40 public DecisionProbe probe; field in class:GrammarUnreachableAltsMessage
43 public GrammarUnreachableAltsMessage(DecisionProbe probe, argument
47 this.probe = probe;
50 if ( probe.dfa.isTokensRuleDecision() ) {
56 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
59 String fileName = probe.dfa.nfa.grammar.getFileName();
66 if ( probe.dfa.isTokensRuleDecision() ) {
71 probe.getTokenNameForTokensRuleAlt(altI.intValue());
74 probe
[all...]
H A DGrammarDanglingStateMessage.java42 public DecisionProbe probe; field in class:GrammarDanglingStateMessage
45 public GrammarDanglingStateMessage(DecisionProbe probe, argument
49 this.probe = probe;
54 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
57 String fileName = probe.dfa.nfa.grammar.getFileName();
61 List labels = probe.getSampleNonDeterministicInputSequence(problemState);
62 String input = probe.getInputSequenceDisplay(labels);
H A DRecursionOverflowMessage.java41 public DecisionProbe probe; field in class:RecursionOverflowMessage
47 public RecursionOverflowMessage(DecisionProbe probe, argument
54 this.probe = probe;
62 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
65 String fileName = probe.dfa.nfa.grammar.getFileName();
76 probe.getSampleNonDeterministicInputSequence(sampleBadState);
77 String input = probe.getInputSequenceDisplay(labels);
H A DNonRegularDecisionMessage.java40 public DecisionProbe probe; field in class:NonRegularDecisionMessage
43 public NonRegularDecisionMessage(DecisionProbe probe, Set<Integer> altsWithRecursion) { argument
45 this.probe = probe;
50 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
53 String fileName = probe.dfa.nfa.grammar.getFileName();
59 String ruleName = probe.dfa.getNFADecisionStartState().enclosingRule.name;
H A DGrammarInsufficientPredicatesMessage.java39 public DecisionProbe probe; field in class:GrammarInsufficientPredicatesMessage
43 public GrammarInsufficientPredicatesMessage(DecisionProbe probe, argument
48 this.probe = probe;
54 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
57 String fileName = probe.dfa.nfa.grammar.getFileName();
80 List<Label> sampleInputLabels = problemState.dfa.probe.getSampleNonDeterministicInputSequence(problemState);
81 String input = problemState.dfa.probe.getInputSequenceDisplay(sampleInputLabels);
/external/webkit/Source/JavaScriptCore/runtime/
H A DTracing.d28 probe gc__begin();
29 probe gc__marked();
30 probe gc__end();
32 probe profile__will_execute(int, char*, char*, int);
33 probe profile__did_execute(int, char*, char*, int);
/external/icu4c/layout/
H A DLookupTables.cpp30 le_int16 probe = SWAPW(searchRange); local
40 while (probe > unity) {
41 probe >>= 1;
42 trial = (const LookupSegment *) ((char *) entry + probe);
59 le_int16 probe = SWAPW(searchRange); local
69 while (probe > unity) {
70 probe >>= 1;
71 trial = (const LookupSingle *) ((char *) entry + probe);
H A DOpenTypeUtilities.cpp59 le_int32 probe = power; local
66 while (probe > (1 << 0)) {
67 probe >>= 1;
69 if (SWAPT(records[index + probe].tag) <= tag) {
70 index += probe;
86 le_int32 probe = power; local
97 while (probe > (1 << 0)) {
98 probe >>= 1;
100 if (SWAPW(records[range + probe].firstGlyph) <= glyphID) {
101 range += probe;
116 le_int32 probe = power; local
138 le_int32 probe = power; local
[all...]
H A DCoverageTables.cpp48 le_uint16 probe = power; local
59 while (probe > (1 << 0)) {
60 probe >>= 1;
62 if (SWAPW(glyphArray[index + probe]) <= ttGlyphID) {
63 index += probe;
/external/e2fsprogs/lib/blkid/
H A Dprobe.c2 * probe.c - identify a block device by its contents, and return a dev
37 #include "probe.h"
322 static int probe_ext4dev(struct blkid_probe *probe, argument
363 get_ext2_info(probe->dev, id, buf);
367 static int probe_ext4(struct blkid_probe *probe, struct blkid_magic *id, argument
411 get_ext2_info(probe->dev, id, buf);
415 static int probe_ext3(struct blkid_probe *probe, struct blkid_magic *id, argument
433 get_ext2_info(probe->dev, id, buf);
437 static int probe_ext2(struct blkid_probe *probe, struct blkid_magic *id, argument
465 get_ext2_info(probe
469 probe_jbd(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
514 probe_fat(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
641 probe_fat_nomagic(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
682 probe_ntfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
790 probe_xfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
806 probe_reiserfs(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
834 probe_reiserfs4(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
850 probe_jfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
876 probe_zfs(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
890 probe_luks(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
903 probe_romfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
918 probe_cramfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
933 probe_swap0(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf __BLKID_ATTR((unused))) argument
942 probe_swap1(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf __BLKID_ATTR((unused))) argument
975 probe_iso9660(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
995 probe_udf(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf __BLKID_ATTR((unused))) argument
1038 probe_ocfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1061 probe_ocfs2(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1074 probe_oracleasm(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1086 probe_gfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1108 probe_gfs2(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1183 probe_hfsplus(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
1324 probe_lvm2(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
1371 probe_btrfs(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
1500 struct blkid_probe probe; local
[all...]
/external/icu4c/layoutex/
H A DLXUtilities.cpp57 le_int32 probe = power; local
64 while (probe > (1 << 0)) {
65 probe >>= 1;
67 if (value >= array[index + probe]) {
68 index += probe;
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntitySearch.cpp73 const HTMLEntityTableEntry* probe = halfway(left, right); local
74 result = compare(probe, nextCharacter);
76 left = probe;
79 right = probe;
98 const HTMLEntityTableEntry* probe = halfway(left, right); local
99 result = compare(probe, nextCharacter);
101 right = probe;
104 left = probe;
/external/harfbuzz_ng/src/hb-icu-le/
H A Dcmaps.cpp125 le_uint16 probe = 1 << fEntrySelector; local
132 while (probe > (1 << 0)) {
133 probe >>= 1;
135 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
136 index += probe;
174 le_int32 probe = fPower; local
181 while (probe > (1 << 0)) {
182 probe >>= 1;
184 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
185 range += probe;
[all...]
/external/icu4c/samples/layout/
H A Dcmaps.cpp131 le_uint16 probe = 1 << fEntrySelector; local
138 while (probe > (1 << 0)) {
139 probe >>= 1;
141 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
142 index += probe;
180 le_int32 probe = fPower; local
187 while (probe > (1 << 0)) {
188 probe >>= 1;
190 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
191 range += probe;
[all...]
/external/icu4c/test/letest/
H A Dcmaps.cpp125 le_uint16 probe = 1 << fEntrySelector; local
132 while (probe > (1 << 0)) {
133 probe >>= 1;
135 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
136 index += probe;
174 le_int32 probe = fPower; local
181 while (probe > (1 << 0)) {
182 probe >>= 1;
184 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
185 range += probe;
[all...]
H A DFontObject.cpp63 le_uint16 probe = 1 << entrySelector; local
69 while (probe > (1 << 0)) {
70 probe >>= 1;
72 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) {
73 table += probe;
161 le_uint16 probe = 1 << cmEntrySelector; local
168 while (probe > (1 << 0)) {
169 probe >>= 1;
171 if (SWAPW(cmStartCodes[index + probe]) <= unicode) {
172 index += probe;
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dautodetectproxy.cc121 std::string probe; local
125 probe.assign("CONNECT www.google.com:443 HTTP/1.0\r\n"
127 probe.append(agent_);
128 probe.append("\r\n"
135 probe.assign("\005\001\000", 3);
143 << " sending " << probe.size() << " bytes";
144 socket_->Send(probe.data(), probe.size());
/external/oprofile/libabi/
H A Dop_abi.c69 unsigned int probe = 0xff; local
71 unsigned char * probe_byte = (unsigned char *)&probe;
/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
H A Dalloca.c144 auto char probe; /* probes stack depth: */ local
145 register char *depth = &probe;
/external/icu4c/extra/scrptrun/
H A Dscrptrun.cpp85 int32_t probe = pairedCharPower; local
92 while (probe > (1 << 0)) {
93 probe >>= 1;
95 if (ch >= pairedChars[index + probe]) {
96 index += probe;
/external/bison/src/
H A Dmuscle-tab.c111 muscle_entry probe; local
114 probe.key = key;
115 entry = hash_lookup (muscle_table, &probe);
141 muscle_entry probe; local
144 probe.key = key;
145 entry = hash_lookup (muscle_table, &probe);
228 muscle_entry probe; local
231 probe.key = key;
232 result = hash_lookup (muscle_table, &probe);
248 muscle_entry probe; local
[all...]

Completed in 478 milliseconds

12345