HomeSort by relevance Sort by last modified time
    Searched refs:UID (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/libvorbis/symbian/
vorbis.mmp 35 UID 0
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
quota.h 186 #define dqoff(UID) ((loff_t)((UID) * sizeof (struct dqblk)))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
quota.h 186 #define dqoff(UID) ((loff_t)((UID) * sizeof (struct dqblk)))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
quota.h 186 #define dqoff(UID) ((loff_t)((UID) * sizeof (struct dqblk)))
  /external/clang/include/clang/Basic/
FileManager.h 66 unsigned UID; // A unique (small) ID for the file.
95 unsigned getUID() const { return UID; }
VirtualFileSystem.h 34 llvm::sys::fs::UniqueID UID;
48 Status(StringRef Name, StringRef RealName, llvm::sys::fs::UniqueID UID,
62 llvm::sys::fs::UniqueID getUniqueID() const { return UID; }
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
OpenHelper.java 128 final Cursor cursor = context.getContentResolver().query(uri, new String[]{Constants.UID},
133 return cursor.getInt(cursor.getColumnIndexOrThrow(Constants.UID));
Constants.java 45 /** The column that is used for the initiating app's UID */
46 public static final String UID = "uid";
  /external/elfutils/src/libebl/
eblauxvinfo.c 54 TYPE (UID, "u") \
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 37 InstrUID UID;
45 /// encoding and therefore distinct from the UID
218 /// \param uid The unique ID of the current instruction.
221 InstrUID uid);
230 /// \param uid The unique ID of the instruction.
233 InstrUID uid);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
BCStyle.java 187 public static final ASN1ObjectIdentifier UID = new ASN1ObjectIdentifier("0.9.2342.19200300.100.1.1");
212 DefaultSymbols.put(UID, "UID");
248 DefaultLookUp.put("uid", UID);
  /external/libnfc-nxp/src/
phFriNfc_SmtCrdFmt.h 125 uint8_t UID[4];
phFriNfc_TopazMap.c 239 (void)memset(NdefMap->TopazContainer.UID, PH_FRINFC_TOPAZ_VAL0,
240 sizeof(NdefMap->TopazContainer.UID));
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapConstants.java 86 public static final String UID = "UID";
87 public static final String UID_COPY = "UID COPY";
88 public static final String UID_FETCH = "UID FETCH";
89 public static final String UID_SEARCH = "UID SEARCH";
90 public static final String UID_STORE = "UID STORE";
  /packages/services/Telephony/src/com/android/phone/common/mail/store/imap/
ImapConstants.java 86 public static final String UID = "UID";
87 public static final String UID_COPY = "UID COPY";
88 public static final String UID_FETCH = "UID FETCH";
89 public static final String UID_SEARCH = "UID SEARCH";
90 public static final String UID_STORE = "UID STORE";
  /external/openssh/contrib/cygwin/
ssh-user-config 78 pwdhome=$(getent passwd $UID | awk -F: '{ print $6; }')
  /external/elfutils/src/tests/
run-readelf-mixed-corenote.sh 41 uid: 0, gid: 0, pid: 11087, ppid: 11063, pgrp: 11087, sid: 11063
53 UID: 0
114 uid: 0, gid: 0, pid: 805, ppid: 804, pgrp: 804, sid: 699
127 UID: 0
175 uid: 0, gid: 0, pid: 839, ppid: 838, pgrp: 838, sid: 699
188 UID: 0
249 uid: 1000, gid: 1000, pid: 9664, ppid: 2868, pgrp: 9664, sid: 2868
265 UID: 1000
321 uid: 0, gid: 0, pid: 16547, ppid: 3822, pgrp: 16547, sid: 3822
337 UID:
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 130 private static final ObjectIdentifier UID = new ObjectIdentifier(
131 new int[]{ 0, 9, 2342, 19200300, 100, 1, 1 }, "UID", RFC2253_NAMES);
153 RFC2253_NAMES.put(UID.getName(), UID);
  /external/llvm/include/llvm/Object/
Archive.h 30 char UID[6];
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_dump.c 81 #define UID(I) ctx->dump_printf( ctx, "%u", I )
224 UID(data[i].Uint);
283 UID( decl->Semantic.Index );
605 UID( inst->Label.Label );
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 620 // Some of the data this is used for (like UID) can be larger than the
634 const sys::TimeValue &ModTime, unsigned UID,
638 printWithSpacePadding(Out, UID, 6, true);
646 const sys::TimeValue &ModTime, unsigned UID,
649 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size);
653 const sys::TimeValue &ModTime, unsigned UID,
657 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size);
    [all...]
  /external/clang/lib/Frontend/
CacheTokens.cpp 88 llvm::sys::fs::UniqueID UID = FE->getUniqueID();
89 LE.write<uint64_t>(UID.getFile());
90 LE.write<uint64_t>(UID.getDevice());
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 34 : UID(Status.getUniqueID()), MTime(Status.getLastModificationTime()),
38 Status::Status(StringRef Name, StringRef ExternalName, UniqueID UID,
41 : Name(Name), UID(UID), MTime(MTime), User(User), Group(Group), Size(Size),
987 static std::atomic<unsigned> UID;
988 unsigned ID = ++UID;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 120 DwarfUnit(unsigned UID, dwarf::Tag, DICompileUnit CU, AsmPrinter *A,
421 DwarfTypeUnit(unsigned UID, DwarfCompileUnit &CU, AsmPrinter *A,
  /external/llvm/lib/Object/
Archive.cpp 72 if (StringRef(UID, sizeof(UID)).rtrim(" ").getAsInteger(10, Ret))
73 llvm_unreachable("UID time not a decimal number.");

Completed in 547 milliseconds

1 2 3