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

1 2 3 4

  /external/e2fsprogs/intl/
eval-plural.h 19 #ifndef STATIC
20 #define STATIC static
24 STATIC
printf.c 62 #define STATIC static
  /external/libnfc-nxp/src/
phLibNfc_Ioctl.c 49 #define STATIC static
51 #define STATIC
58 STATIC phLibNfc_Ioctl_Cntx_t phLibNfc_Ioctl_Cntx;
61 *************************** Static Function Declaration ***********************
66 STATIC void phLibNfc_Ioctl_Mgmt_CB(void *context,
72 STATIC void phLibNfc_Switch_Swp_Mode_CB(
236 STATIC void phLibNfc_Ioctl_Mgmt_CB(void *context,
301 STATIC void phLibNfc_Switch_Swp_Mode_CB(
phLibNfc_target.c 47 #define STATIC static
49 //#undef STATIC
50 #define STATIC
57 *************************** Static Function Declaration ***********************
61 STATIC void phLibNfc_RemoteDev_Receive_Cb(
68 STATIC void phLibNfc_RemoteDev_Send_Cb(
164 STATIC void phLibNfc_RemoteDev_Receive_Cb(
343 STATIC void phLibNfc_RemoteDev_Send_Cb(
phLibNfc_discovery.c 47 #define STATIC static
49 #define STATIC
59 *************************** Static Function Declaration ***********************
64 STATIC void phLibNfc_RemoteDev_CheckPresence_Cb(void *context,
68 STATIC void phLibNfc_ChkPresence_Trcv_Cb(
311 STATIC
361 STATIC void phLibNfc_ChkPresence_Trcv_Cb(
phLibNfc_SE.c 48 #define STATIC static
50 #define STATIC
61 *************************** Static Function Declaration ***********************
65 STATIC
70 STATIC
131 STATIC void phLibNfc_SeNotification(void *context,
669 STATIC void phLibNfc_SE_SetMode_cb(void *context, NFCSTATUS status)
phLibNfc.c 53 #define STATIC static
55 #define STATIC
67 *************************** Static Function Declaration ***********************
71 STATIC void phLibNfc_InitCb(void *pContext,NFCSTATUS status);
74 STATIC void phLibNfc_ShutdownCb(void *pContext,NFCSTATUS status);
78 STATIC void phLibNfc_DefaultHandler(
256 STATIC void phLibNfc_InitCb(void *pContext,NFCSTATUS status)
328 STATIC void phLibNfc_DefaultHandler(
420 STATIC void phLibNfc_ShutdownCb(void *pContext,NFCSTATUS status
    [all...]
phLibNfc_initiator.c 49 #define STATIC static
51 #define STATIC
61 *************************** Static Function Declaration ***********************
65 STATIC void phLibNfc_NotificationRegister_Resp_Cb (
73 STATIC void phLibNfc_RemoteDev_Connect_Cb(
80 STATIC
88 STATIC void phLibNfc_RemoteDev_Disconnect_cb(
94 STATIC void phLibNfc_RemoteDev_Transceive_Cb(void *context,
100 STATIC void phLibNfc_Mgt_SetP2P_ConfigParams_Cb
    [all...]
phLibNfc_llcp.c 26 #define STATIC static
28 #define STATIC
33 STATIC
36 STATIC
39 STATIC
42 STATIC
47 STATIC NFCSTATUS static_CheckState()
70 STATIC NFCSTATUS static_CheckDevice(phLibNfc_Handle hRemoteDevice)
270 STATIC
    [all...]
phHal4Nfc.c 42 #define STATIC static
44 #define STATIC
55 static void phHal4Nfc_IoctlComplete(
60 static void phHal4Nfc_LowerNotificationHandler(
66 static void phHal4Nfc_HandleEvent(
71 static void phHal4Nfc_OpenComplete(
76 static void phHal4Nfc_CloseComplete(
81 static void phHal4Nfc_DownloadComplete(
88 static NFCSTATUS phHal4Nfc_Configure_Layers
    [all...]
phLibNfc_ndef_raw.c 49 #define STATIC static
51 //#undef STATIC
52 #define STATIC
66 *************************** Static Function Declaration ***********************
70 STATIC
74 STATIC
78 STATIC
82 STATIC
86 STATIC
    [all...]
  /cts/tools/signature-tools/src/signature/model/
Modifier.java 25 PUBLIC("public"), PRIVATE("private"), PROTECTED("protected"), STATIC(
26 "static"), FINAL("final"), SYNCHRONIZED("synchronized"), VOLATILE(
41 public static String toString(Set<Modifier> modifiers) {
  /external/chromium_org/net/spdy/
hpack_entry.h 28 static const size_t kSizeOverhead;
31 // - |is_static| captures whether this entry is a member of the static
34 // inserted into the header table (including static entries).
56 // Returns whether this entry is a member of the static (as opposed to
58 bool IsStatic() const { return type_ == STATIC; }
72 static size_t Size(base::StringPiece name, base::StringPiece value);
81 STATIC,
  /external/chromium_org/base/debug/
trace_event_synthetic_delay.h 42 static base::subtle::AtomicWord INTERNAL_TRACE_EVENT_UID(impl_ptr) = 0; \
51 static base::subtle::AtomicWord impl_ptr = 0; \
60 static base::subtle::AtomicWord impl_ptr = 0; \
85 STATIC, // Apply the configured delay every time.
91 static TraceEventSyntheticDelay* Lookup(const std::string& name);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
InlineMethodResolver.java 46 // We can't use, e.g. AccessFlags.STATIC.value, because we need them to be a constant in order to use them as cases
48 public static final int STATIC = 0x8; // AccessFlags.STATIC.value;
49 public static final int VIRTUAL = 0x1; // AccessFlags.PUBLIC.value;
50 public static final int DIRECT = 0x2; // AccessFlags.PRIVATE.value;
53 public static InlineMethodResolver createInlineMethodResolver(int odexVersion) {
67 private static Method inlineMethod(int accessFlags, @Nonnull String cls, @Nonnull String name,
75 private static class InlineMethodResolver_version35 extends InlineMethodResolver
81 inlineMethod(STATIC, "Lorg/apache/harmony/dalvik/NativeTestTarget;", "emptyInlineMethod", "", "V")
    [all...]
  /external/e2fsprogs/lib/ext2fs/
csum.c 27 #define STATIC
29 #define STATIC static
107 static __u32 find_last_inode_ingrp(ext2fs_inode_bitmap bitmap,
  /external/javassist/src/main/javassist/
Modifier.java 21 * The Modifier class provides static methods and constants to decode
31 public static final int PUBLIC = AccessFlag.PUBLIC;
32 public static final int PRIVATE = AccessFlag.PRIVATE;
33 public static final int PROTECTED = AccessFlag.PROTECTED;
34 public static final int STATIC = AccessFlag.STATIC;
35 public static final int FINAL = AccessFlag.FINAL;
36 public static final int SYNCHRONIZED = AccessFlag.SYNCHRONIZED;
37 public static final int VOLATILE = AccessFlag.VOLATILE
    [all...]
  /external/javassist/src/main/javassist/bytecode/
AccessFlag.java 19 * A support class providing static methods and constants
23 public static final int PUBLIC = 0x0001;
24 public static final int PRIVATE = 0x0002;
25 public static final int PROTECTED = 0x0004;
26 public static final int STATIC = 0x0008;
27 public static final int FINAL = 0x0010;
28 public static final int SYNCHRONIZED = 0x0020;
29 public static final int VOLATILE = 0x0040;
30 public static final int BRIDGE = 0x0040; // for method_inf
    [all...]
  /frameworks/base/core/java/android/net/
IpConfiguration.java 30 private static final String TAG = "IpConfiguration";
35 STATIC,
53 STATIC,
135 sbuf.append("Static configuration: " + staticIpConfiguration.toString());
187 public static final Creator<IpConfiguration> CREATOR =
  /external/chromium_org/third_party/codesighs/
msmap.h 65 STATIC,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
AccessFlags.java 41 STATIC(0x8, "static", true, true, true),
65 private final static AccessFlags[] allFlags;
67 private static HashMap<String, AccessFlags> accessFlagsByName;
69 static {
91 public static AccessFlags[] getAccessFlagsForClass(int accessFlagValue) {
109 private static String formatAccessFlags(AccessFlags[] accessFlags) {
126 public static String formatAccessFlagsForClass(int accessFlagValue) {
130 public static AccessFlags[] getAccessFlagsForMethod(int accessFlagValue) {
148 public static String formatAccessFlagsForMethod(int accessFlagValue)
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 208 #define STATIC static
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbtype.h 208 #define STATIC static
  /libcore/luni/src/main/java/java/lang/reflect/
Modifier.java 21 * This class provides static methods to decode class and member modifiers.
31 public static final int PUBLIC = 0x1;
36 public static final int PRIVATE = 0x2;
41 public static final int PROTECTED = 0x4;
44 * The {@code int} value representing the {@code static} modifier.
46 public static final int STATIC = 0x8;
51 public static final int FINAL = 0x10;
56 public static final int SYNCHRONIZED = 0x20;
61 public static final int VOLATILE = 0x40
    [all...]
  /cts/tools/dasm/src/dasm/
sym.java 12 static final int REGS = 29;
13 static final int FROM = 26;
14 static final int DSIGNATURE = 19;
15 static final int SYNTHETIC = 56;
16 static final int OUTER = 34;
17 static final int DCLASS = 3;
18 static final int DVAR = 13;
19 static final int DECLARED_SYNCHRONIZED = 48;
20 static final int DSUPER = 10;
21 static final int SIGNATURE = 28
    [all...]

Completed in 1393 milliseconds

1 2 3 4