HomeSort by relevance Sort by last modified time
    Searched defs:probe (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/bcc/examples/lua/
kprobe-write.lua 26 local probe = bpf.kprobe('myprobe:sys_write', function (ptregs)
uprobe-readline-perf.lua 27 local probe = bpf.uprobe('/bin/bash:readline', function (ptregs)
uprobe-readline.lua 24 local probe = bpf.uprobe('/bin/bash:readline', function (ptregs)
  /external/antlr/tool/src/main/java/org/antlr/tool/
GrammarAnalysisAbortedMessage.java 37 public DecisionProbe probe; field in class:GrammarAnalysisAbortedMessage
39 public GrammarAnalysisAbortedMessage(DecisionProbe probe) {
41 this.probe = probe;
46 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
49 String fileName = probe.dfa.nfa.grammar.getFileName();
55 probe.dfa.getNFADecisionStartState().enclosingRule.name);
GrammarDanglingStateMessage.java 43 public DecisionProbe probe; field in class:GrammarDanglingStateMessage
46 public GrammarDanglingStateMessage(DecisionProbe probe,
50 this.probe = probe;
56 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
59 String fileName = probe.dfa.nfa.grammar.getFileName();
63 List<Label> labels = probe.getSampleNonDeterministicInputSequence(problemState);
64 String input = probe.getInputSequenceDisplay(labels);
GrammarUnreachableAltsMessage.java 40 public DecisionProbe probe; field in class:GrammarUnreachableAltsMessage
43 public GrammarUnreachableAltsMessage(DecisionProbe probe,
47 this.probe = probe;
50 if ( probe.dfa.isTokensRuleDecision() ) {
57 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
60 String fileName = probe.dfa.nfa.grammar.getFileName();
67 if ( probe.dfa.isTokensRuleDecision() ) {
72 probe.getTokenNameForTokensRuleAlt(altI);
75 probe.dfa.nfa.grammar.getRuleStartState(tokenName)
    [all...]
NonRegularDecisionMessage.java 40 public DecisionProbe probe; field in class:NonRegularDecisionMessage
43 public NonRegularDecisionMessage(DecisionProbe probe, Set<Integer> altsWithRecursion) {
45 this.probe = probe;
51 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
54 String fileName = probe.dfa.nfa.grammar.getFileName();
60 String ruleName = probe.dfa.getNFADecisionStartState().enclosingRule.name;
RecursionOverflowMessage.java 43 public DecisionProbe probe; field in class:RecursionOverflowMessage
49 public RecursionOverflowMessage(DecisionProbe probe,
56 this.probe = probe;
65 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
68 String fileName = probe.dfa.nfa.grammar.getFileName();
79 probe.getSampleNonDeterministicInputSequence(sampleBadState);
80 String input = probe.getInputSequenceDisplay(labels);
GrammarNonDeterminismMessage.java 44 public DecisionProbe probe; field in class:GrammarNonDeterminismMessage
47 public GrammarNonDeterminismMessage(DecisionProbe probe,
51 this.probe = probe;
54 if ( probe.dfa.isTokensRuleDecision() ) {
61 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
64 String fileName = probe.dfa.nfa.grammar.getFileName();
71 List<Label> labels = probe.getSampleNonDeterministicInputSequence(problemState);
72 String input = probe.getInputSequenceDisplay(labels);
75 if ( probe.dfa.isTokensRuleDecision() )
    [all...]
GrammarInsufficientPredicatesMessage.java 39 public DecisionProbe probe; field in class:GrammarInsufficientPredicatesMessage
43 public GrammarInsufficientPredicatesMessage(DecisionProbe probe,
48 this.probe = probe;
55 GrammarAST decisionASTNode = probe.dfa.getDecisionASTNode();
58 String fileName = probe.dfa.nfa.grammar.getFileName();
81 List<Label> sampleInputLabels = problemState.dfa.probe.getSampleNonDeterministicInputSequence(problemState);
82 String input = problemState.dfa.probe.getInputSequenceDisplay(sampleInputLabels);
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/src/com/android/cts/splitapp/
BaseBootReceiver.java 34 final File probe = new File(context.getFilesDir(), local
36 Log.d(TAG, "Touching probe " + probe);
37 probe.createNewFile();
38 exposeFile(probe);
  /external/icu/icu4c/source/layoutex/
LXUtilities.cpp 59 le_int32 probe = power; local
66 while (probe > (1 << 0)) {
67 probe >>= 1;
69 if (value >= array[index + probe]) {
70 index += probe;
  /external/icu/icu4c/source/extra/scrptrun/
scrptrun.cpp 86 int32_t probe = pairedCharPower; local
93 while (probe > (1 << 0)) {
94 probe >>= 1;
96 if (ch >= pairedChars[index + probe]) {
97 index += probe;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
TaggedRecord.java 59 int probe = power; local
66 while (probe > (1 << 0)) {
67 probe >>= 1;
69 if (table[index + probe].getTag().compareTo(tag) <= 0) {
70 index += probe;
  /external/antlr/tool/src/main/java/org/antlr/analysis/
DFA.java 158 /** This probe tells you a lot about a decision and is useful even
163 public DecisionProbe probe = new DecisionProbe(this); field in class:DFA
242 if ( !probe.isDeterministic() || probe.analysisOverflowed() ) {
243 probe.issueWarnings();
255 // probe.reportAnalysisTimeout();
257 // probe.issueWarnings();
261 probe.reportNonLLStarDecision(this);
264 probe.issueWarnings();
740 !probe.isNonLLStarDecision() &
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
CommonExternalStorageTest.java 266 final File probe = buildProbeFile(path); local
267 assertFalse(probe.createNewFile());
268 assertFalse(probe.exists());
269 assertFalse(probe.delete());
270 fail("able to create probe!");
285 final File probe = buildProbeFile(path); local
286 assertTrue(probe.createNewFile());
287 assertTrue(probe.exists());
288 assertTrue(probe.delete());
289 assertFalse(probe.exists())
302 final File probe = buildProbeFile(path); local
322 final File probe = buildProbeFile(path); local
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/WriteExternalStorageApp/src/com/android/cts/writeexternalstorageapp/
WriteExternalStorageTest.java 105 final File probe = new File( local
109 assertFalse(probe.exists());
110 assertTrue(probe.mkdirs());
112 assertDirReadWriteAccess(probe);
298 // Probe path could be /storage/emulated/0 or /storage/1234-5678
299 final File probe = buildProbeFile(Environment.getExternalStorageDirectory()); local
300 assertTrue(probe.createNewFile());
309 final File testProbe = new File(path, probe.getName());
310 final File testUserProbe = new File(userPath, probe.getName());
330 final File beforeFile = new File(before, "test.probe");
    [all...]
  /external/bcc/tests/cc/
test_usdt_probes.cc 38 TEST_CASE("test finding a probe in our own process", "[usdt]") {
42 SECTION("our test probe") {
43 auto probe = ctx.get("sample_probe_1"); variable
44 REQUIRE(probe); variable
46 REQUIRE(probe->in_shared_object(probe->bin_path()) == false);
47 REQUIRE(probe->name() == "sample_probe_1");
48 REQUIRE(probe->provider() == "libbcc_test");
49 REQUIRE(probe->bin_path().find("/test_libbcc") != std::string::npos);
51 REQUIRE(probe->num_locations() == 1)
161 auto probe = ctx.get(name); variable
162 REQUIRE(probe); variable
184 auto probe = ctx.get(name); variable
185 REQUIRE(probe); variable
207 auto probe = ctx.get(name); variable
208 REQUIRE(probe); variable
234 auto probe = ctx.get(name); variable
235 REQUIRE(probe); variable
    [all...]
  /external/icu/icu4c/source/samples/layout/
cmaps.cpp 137 le_uint16 probe = 1 << fEntrySelector; local
144 while (probe > (1 << 0)) {
145 probe >>= 1;
147 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
148 index += probe;
186 le_int32 probe = fPower; local
193 while (probe > (1 << 0)) {
194 probe >>= 1;
196 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
197 range += probe;
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/tool/
GenerateBcp47Text.java 29 R2<String, String> probe = Row.of("", ""); field in class:GenerateBcp47Text
75 probe.set0(key).set1(subtype);
76 final String description = keySubtype2Description.get(probe);
77 final String since = keySubtype2Since.get(probe);
83 showField(out, "Aliases", keySubtype2Aliases.get(probe));
  /external/cldr/tools/java/org/unicode/cldr/util/
SimpleDictionary.java 124 // get the next probe value
126 CharSequence probe = text.subSequence(offset, matchEnd); local
128 // narrow to the items that start with the probe
131 firstMatch = filterToStartsWith(probe);
135 if (firstMatch != null && firstMatch.length() == probe.length()) {
144 // example: probe = "man"
178 * filters the rest of the list to those that match the probe.
180 * @param probe
183 private CharSequence filterToStartsWith(CharSequence probe) {
187 if (startsWith(item, probe)) {
    [all...]
  /external/icu/icu4c/source/common/
uvectr32.cpp 311 int32_t probe = (min + max) / 2; local
312 //int8_t c = (*compare)(elements[probe], tok);
314 if (elements[probe] > tok) {
315 max = probe;
318 min = probe + 1;
  /external/icu/icu4c/source/test/letest/
FontObject.cpp 65 le_uint16 probe = 1 << entrySelector; local
71 while (probe > (1 << 0)) {
72 probe >>= 1;
74 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) {
75 table += probe;
163 le_uint16 probe = 1 << cmEntrySelector; local
170 while (probe > (1 << 0)) {
171 probe >>= 1;
173 if (SWAPW(cmStartCodes[index + probe]) <= unicode) {
174 index += probe;
    [all...]
cmaps.cpp 177 le_uint16 probe = 1 << fEntrySelector; local
184 while (probe > (1 << 0)) {
185 probe >>= 1;
187 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
188 index += probe;
226 le_int32 probe = fPower; local
233 while (probe > (1 << 0)) {
234 probe >>= 1;
236 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
237 range += probe;
    [all...]
  /external/icu/icu4c/source/test/perf/leperf/
FontObject.cpp 69 le_uint16 probe = 1 << entrySelector; local
75 while (probe > (1 << 0)) {
76 probe >>= 1;
78 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) {
79 table += probe;
167 le_uint16 probe = 1 << cmEntrySelector; local
174 while (probe > (1 << 0)) {
175 probe >>= 1;
177 if (SWAPW(cmStartCodes[index + probe]) <= unicode) {
178 index += probe;
    [all...]

Completed in 753 milliseconds

1 2 3 4