Home | History | Annotate | Download | only in strprotocol

Lines Matching defs:m_excludedMethods

23   private List<String> m_excludedMethods = Lists.newArrayList();
38 m_excludedMethods = Lists.newArrayList();
42 m_excludedMethods.add(methodName);
49 m_excludedMethods = Lists.newArrayList();
50 m_excludedMethods.addAll(methods);
54 return m_excludedMethods;
84 if (m_excludedMethods != null && m_excludedMethods.size() > 0) {
86 buf.append(m_excludedMethods.size());
87 for (String method : m_excludedMethods) {