Searched defs:UID (Results 1 - 25 of 40) sorted by relevance

12

/external/llvm/include/llvm/Object/
H A DArchiveWriter.h26 unsigned UID = 0, GID = 0, Perms = 0644; member in struct:llvm::NewArchiveMember
30 : Buf(std::move(Other.Buf)), ModTime(Other.ModTime), UID(Other.UID),
35 UID = Other.UID;
H A DArchive.h31 char UID[6]; member in struct:llvm::object::ArchiveMemberHeader
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
H A DRpcReceiverManagerFactory.java22 public RpcReceiverManager create(Integer UID); argument
H A DJsonRpcServer.java66 protected void handleRPCConnection(Socket sock, Integer UID, BufferedReader reader, argument
71 Log.d("UID " + UID);
74 if (mgrs.containsKey(UID)) {
76 receiverManager = mgrs.get(UID);
79 receiverManager = mRpcReceiverManagerFactory.create(UID);
85 Log.v("Session " + UID + " Received: " + data);
93 send(writer, JsonRpcResult.error(id, new RpcError("Unknown RPC: " + method)), UID);
97 send(writer, JsonRpcResult.result(id, rpc.invoke(receiverManager, params)), UID);
100 send(writer, JsonRpcResult.error(id, t), UID);
117 send(PrintWriter writer, JSONObject result, int UID) argument
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/webcam/
H A DMjpegServer.java66 protected void handleRPCConnection(Socket sock, Integer UID, BufferedReader reader, PrintWriter writer) argument
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DFacadeManagerFactory.java48 public FacadeManager create(Integer UID) { argument
50 mFacadeManagers.put(UID, facadeManager);
/external/sl4a/Common/src/com/googlecode/android_scripting/event/
H A DEventServer.java121 protected void handleRPCConnection(Socket sock, Integer UID, BufferedReader reader, PrintWriter writer) argument
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.h36 InstrUID UID; member in class:llvm::X86Disassembler::RecognizableInstr
44 /// encoding and therefore distinct from the UID
/external/swiftshader/third_party/LLVM/lib/Object/
H A DArchive.cpp27 char UID[6]; member in struct:__anon19952::ArchiveMemberHeader
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DX86RecognizableInstr.h39 InstrUID UID; member in class:llvm::X86Disassembler::RecognizableInstr
45 /// encoding and therefore distinct from the UID
/external/autotest/site_utils/sponge_lib/
H A Dacts_job_info.py37 UID = 'UID' variable in class:ACTSRecordEnums
204 return self._json_record.get(ACTSRecordEnums.UID)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DBCStyle.java178 public static final ASN1ObjectIdentifier UID = new ASN1ObjectIdentifier("0.9.2342.19200300.100.1.1"); field in class:BCStyle
203 DefaultSymbols.put(UID, "UID");
239 DefaultLookUp.put("uid", UID);
/external/clang/include/clang/Basic/
H A DFileManager.h59 unsigned UID; // A unique (small) ID for the file. member in class:clang::FileEntry
89 unsigned getUID() const { return UID; }
H A DVirtualFileSystem.h35 llvm::sys::fs::UniqueID UID; member in class:clang::vfs::Status
49 Status(StringRef Name, llvm::sys::fs::UniqueID UID,
67 llvm::sys::fs::UniqueID getUniqueID() const { return UID; }
/external/sl4a/Utils/src/com/googlecode/android_scripting/
H A DSimpleServer.java62 Integer UID,
92 private final Integer UID; field in class:SimpleServer.ConnectionThread
98 this.UID = uid;
110 handleRPCConnection(mmSocket, UID, reader, writer);
121 mConnectionThreads.remove(this.UID);
61 handleRPCConnection(Socket socket, Integer UID, BufferedReader reader, PrintWriter writer) argument
/external/llvm/lib/Object/
H A DArchiveWriter.cpp51 M.UID = OldMember.getUID();
87 M.UID = Status.getUser();
104 // Some of the data this is used for (like UID) can be larger than the
119 const sys::TimeValue &ModTime, unsigned UID,
123 printWithSpacePadding(Out, UID, 6, true);
132 unsigned UID, unsigned GID,
135 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size);
139 const sys::TimeValue &ModTime, unsigned UID,
146 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms,
162 const sys::TimeValue &ModTime, unsigned UID, unsigne
118 printRestOfMemberHeader(raw_fd_ostream &Out, const sys::TimeValue &ModTime, unsigned UID, unsigned GID, unsigned Perms, unsigned Size) argument
130 printGNUSmallMemberHeader(raw_fd_ostream &Out, StringRef Name, const sys::TimeValue &ModTime, unsigned UID, unsigned GID, unsigned Perms, unsigned Size) argument
138 printBSDMemberHeader(raw_fd_ostream &Out, StringRef Name, const sys::TimeValue &ModTime, unsigned UID, unsigned GID, unsigned Perms, unsigned Size) argument
159 printMemberHeader(raw_fd_ostream &Out, object::Archive::Kind Kind, bool Thin, StringRef Name, std::vector<unsigned>::iterator &StringMapIndexIter, const sys::TimeValue &ModTime, unsigned UID, unsigned GID, unsigned Perms, unsigned Size) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c89 #define UID(I) ctx->dump_printf( ctx, "%u", I ) macro
260 UID( d.i );
267 UID( d.ui );
278 UID(data[i].Uint);
360 UID( decl->Semantic.Index );
367 UID(decl->Semantic.StreamX);
369 UID(decl->Semantic.StreamY);
371 UID(decl->Semantic.StreamZ);
373 UID(decl->Semantic.StreamW);
698 UID( ins
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DX509Name.java215 public static final ASN1ObjectIdentifier UID = new ASN1ObjectIdentifier("0.9.2342.19200300.100.1.1"); field in class:X509Name
275 DefaultSymbols.put(UID, "UID");
306 RFC2253Symbols.put(UID, "UID");
329 DefaultLookUp.put("uid", UID);
/external/clang/lib/Frontend/
H A DCacheTokens.cpp89 llvm::sys::fs::UniqueID UID = FE->getUniqueID(); local
90 LE.write<uint64_t>(UID.getFile());
91 LE.write<uint64_t>(UID.getDevice());
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp19 DwarfCompileUnit::DwarfCompileUnit(unsigned UID, const DICompileUnit *Node, argument
22 : DwarfUnit(dwarf::DW_TAG_compile_unit, Node, A, DW, DWU), UniqueID(UID),
/external/clang/lib/Basic/
H A DVirtualFileSystem.cpp46 : UID(Status.getUniqueID()), MTime(Status.getLastModificationTime()),
50 Status::Status(StringRef Name, UniqueID UID, sys::TimeValue MTime, argument
53 : Name(Name), UID(UID), MTime(MTime), User(User), Group(Group), Size(Size),
1592 static std::atomic<unsigned> UID; local
1593 unsigned ID = ++UID;
/external/llvm/include/llvm/Support/
H A DFileSystem.h179 time_t MTime, uid_t UID, gid_t GID, off_t Size)
181 fs_st_uid(UID), fs_st_gid(GID), fs_st_size(Size), Type(Type),
178 file_status(file_type Type, perms Perms, dev_t Dev, ino_t Ino, time_t ATime, time_t MTime, uid_t UID, gid_t GID, off_t Size) argument
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1118 unsigned UID) const {
1125 Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
1156 Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
1162 const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
1857 MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const { argument
1860 Twine(UID) + "_set_" + Twine(MBBID));
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFileSystem.h180 time_t MTime, uid_t UID, gid_t GID, off_t Size)
182 fs_st_uid(UID), fs_st_gid(GID), fs_st_size(Size), Type(Type),
179 file_status(file_type Type, perms Perms, dev_t Dev, ino_t Ino, time_t ATime, time_t MTime, uid_t UID, gid_t GID, off_t Size) argument
/external/syslinux/efi32/include/efi/
H A Defidevp.h127 UINT32 UID; member in struct:_ACPI_HID_DEVICE_PATH
134 UINT32 UID; member in struct:_EXPANDED_ACPI_HID_DEVICE_PATH

Completed in 5471 milliseconds

12