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

1 2 3 4

  /system/core/libcutils/
socket_inaddr_any_server_windows.cpp 47 // Enforce exclusive addresses so nobody can steal the port from us (1),
51 int exclusive = 1; local
53 if (setsockopt(sock, SOL_SOCKET, SO_EXCLUSIVEADDRUSE, (char*)&exclusive,
54 sizeof(exclusive)) == SOCKET_ERROR ||
  /external/freetype/src/gxvalid/
gxvfeat.h 49 FT_Bool exclusive; member in struct:GXV_Feature_RegistryRec_
gxvfgen.c 91 char exclusive; member in struct:GX_Feature_RegistryRec_
472 featreg_table[i].exclusive ? 1 : 0,
gxvfeat.c 84 FT_Bool exclusive,
124 if ( exclusive != gxv_feat_registry[feature].exclusive )
126 GXV_TRACE(( "exclusive flag %d differs from predefined value\n",
127 exclusive ));
165 FT_Bool exclusive,
178 /* If we have exclusive setting, the setting should be odd. */
179 if ( exclusive && ( setting & 1 ) == 0 )
203 FT_Bool exclusive; local
226 exclusive = FT_BOOL( featureFlags & GXV_FEAT_MASK_EXCLUSIVE_SETTINGS )
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/suggestions/
SuggestionCategory.java 23 public boolean exclusive; field in class:SuggestionCategory
SuggestionParser.java 136 if (category.exclusive && !isExclusiveCategoryExpired(category)) {
137 // If suggestions from an exclusive category are present, parsing is stopped
139 // exclusive categories are also ignored.
151 // Either the category is not exclusive, or the exclusiveness expired so we should
406 private static final String ATTR_EXCLUSIVE = "exclusive";
482 String exclusive = attrs.getAttributeValue(null, ATTR_EXCLUSIVE); local
483 category.exclusive =
484 !TextUtils.isEmpty(exclusive) && Boolean.parseBoolean(exclusive);
  /frameworks/base/tools/preload/
Operation.java 83 long exclusive = inclusiveTimeNanos(); local
86 exclusive -= child.inclusiveTimeNanos();
89 if (exclusive < 0) {
93 return nanosToMicros(exclusive);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzlib.c 103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
  /external/python/cpython2/Modules/zlib/
gzlib.c 103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
  /external/python/cpython3/Modules/zlib/
gzlib.c 103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
  /external/zlib/src/
gzlib.c 103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
klm_prot.h 36 bool_t exclusive; member in struct:klm_holder
58 bool_t exclusive; member in struct:klm_lockargs
64 bool_t exclusive; member in struct:klm_testargs
nlm_prot.h 29 bool_t exclusive; member in struct:nlm_holder
75 bool_t exclusive; member in struct:nlm_lockargs
85 bool_t exclusive; member in struct:nlm_cancargs
92 bool_t exclusive; member in struct:nlm_testargs
  /toolchain/binutils/binutils-2.27/zlib/
gzlib.c 103 int exclusive = 0; local
151 exclusive = 1;
234 (exclusive ? O_EXCL : 0) |
  /external/strace/
perf_event_struct.h 19 exclusive :1, member in struct:perf_event_attr
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorScan.h 60 const XprType& expr, const Index& axis, bool exclusive = false, const Op& op = Op())
61 : m_expr(expr), m_axis(axis), m_accumulator(op), m_exclusive(exclusive) {}
70 bool exclusive() const { return m_exclusive; } function in class:Eigen::TensorScanOp
108 m_exclusive(op.exclusive()),
147 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool exclusive() const { function in struct:Eigen::TensorEvaluator
231 if (self.exclusive()) {
261 if (self.exclusive()) {
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 375 void shiftPc(int where, int gapSize, boolean exclusive)
378 new Shifter(this, where, gapSize, exclusive).visit();
383 private boolean exclusive; field in class:StackMap.Shifter
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) {
389 this.exclusive = exclusive;
393 if (exclusive ? where <= offset : where < offset)
StackMapTable.java 788 void shiftPc(int where, int gapSize, boolean exclusive)
791 new Shifter(this, where, gapSize, exclusive).doit();
799 private boolean exclusive; field in class:StackMapTable.Shifter
801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) {
808 this.exclusive = exclusive;
829 if (exclusive)
876 if (exclusive)
  /bionic/libc/kernel/uapi/linux/
isdn.h 104 int exclusive; member in struct:__anon779
  /external/kernel-headers/original/uapi/linux/
isdn.h 85 #define ISDN_USAGE_EXCLUSIVE 64 /* This bit is set, if channel is exclusive */
120 int exclusive; /* Channel, if bound exclusive */ member in struct:__anon22985
  /external/strace/tests/
perf_event_open.c 81 exclusive :1, member in struct:pea_flags
229 ", exclusive=%u"
244 attr->exclusive,
  /external/strace/tests-m32/
perf_event_open.c 81 exclusive :1, member in struct:pea_flags
229 ", exclusive=%u"
244 attr->exclusive,
  /external/strace/tests-mx32/
perf_event_open.c 81 exclusive :1, member in struct:pea_flags
229 ", exclusive=%u"
244 attr->exclusive,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
isdn.h 83 #define ISDN_USAGE_EXCLUSIVE 64 /* This bit is set, if channel is exclusive */
118 int exclusive; /* Channel, if bound exclusive */ member in struct:__anon62591
perf_event.h 197 exclusive : 1, /* only group on PMU */ member in struct:perf_event_attr

Completed in 729 milliseconds

1 2 3 4