HomeSort by relevance Sort by last modified time
    Searched refs:PROTECTED (Results 26 - 50 of 260) sorted by null

12 3 4 5 6 7 8 91011

  /external/libunwind/src/sh/
Ginit_local.c 31 PROTECTED int
39 PROTECTED int
  /external/javassist/src/main/javassist/bytecode/
AccessFlag.java 25 public static final int PROTECTED = 0x0004;
47 * Truns the public bit on. The protected and private bits are
51 return (accflags & ~(PRIVATE | PROTECTED)) | PUBLIC;
55 * Truns the protected bit on. The protected and public bits are
59 return (accflags & ~(PRIVATE | PUBLIC)) | PROTECTED;
63 * Truns the private bit on. The protected and private bits are
67 return (accflags & ~(PROTECTED | PUBLIC)) | PRIVATE;
71 * Clears the public, protected, and private bits.
74 return (accflags & ~(PROTECTED | PUBLIC | PRIVATE))
    [all...]
  /external/libunwind/src/coredump/
_UCD_accessors.c 26 PROTECTED unw_accessors_t _UCD_accessors =
  /external/libunwind/src/ia64/
Gget_proc_info.c 28 PROTECTED int
  /external/libunwind/src/mi/
Gdestroy_addr_space.c 28 PROTECTED void
Gget_fpreg.c 28 PROTECTED int
Gget_reg.c 28 PROTECTED int
Gset_fpreg.c 28 PROTECTED int
Gset_reg.c 28 PROTECTED int
  /external/libunwind/src/mips/
Gresume.c 41 PROTECTED int
  /external/libunwind/src/ptrace/
_UPT_accessors.c 28 PROTECTED unw_accessors_t _UPT_accessors =
  /external/libunwind/src/unwind/
DeleteException.c 28 PROTECTED void
FindEnclosingFunction.c 28 PROTECTED void *
GetBSP.c 28 PROTECTED unsigned long
GetCFA.c 28 PROTECTED unsigned long
GetDataRelBase.c 28 PROTECTED unsigned long
GetIP.c 28 PROTECTED unsigned long
GetLanguageSpecificData.c 28 PROTECTED unsigned long
GetRegionStart.c 28 PROTECTED unsigned long
  /external/libunwind/src/x86/
is_fpreg.c 28 PROTECTED int
Ginit_local.c 31 PROTECTED int
39 PROTECTED int
  /external/javassist/src/main/javassist/
Modifier.java 33 public static final int PROTECTED = AccessFlag.PROTECTED;
64 * Returns true if the modifiers include the <tt>protected</tt>
68 return (mod & PROTECTED) != 0;
73 * <tt>public</tt>, <tt>protected</tt>, or <tt>private</tt>.
76 return (mod & (PUBLIC | PRIVATE | PROTECTED)) == 0;
172 * Truns the public bit on. The protected and private bits are
176 return (mod & ~(PRIVATE | PROTECTED)) | PUBLIC;
180 * Truns the protected bit on. The protected and public bits ar
    [all...]
  /external/libunwind/src/ppc/
Ginit_local.c 37 PROTECTED int
46 PROTECTED int
  /external/libunwind/src/x86_64/
Ginit_local.c 33 PROTECTED int
41 PROTECTED int
  /external/libunwind/include/
compiler.h 43 # define PROTECTED __attribute__((visibility ("protected")))
47 # define PROTECTED
66 # define PROTECTED

Completed in 2558 milliseconds

12 3 4 5 6 7 8 91011