Searched defs:uid (Results 76 - 100 of 187) sorted by relevance

12345678

/external/libnfc-nci/src/nfa/int/
H A Dnfa_ce_int.h75 UINT8 uid[NFA_MAX_UID_LEN]; member in struct:__anon24080
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.cpp678 uint64 uid = 0; local
685 uid <<= 8;
709 uid |= n;
712 return uid;
/external/lldb/include/lldb/Target/
H A DPlatform.h273 GetUserName (uint32_t uid);
574 GetCachedUserName (uint32_t uid) argument
577 IDToNameMap::iterator pos = m_uid_map.find (uid);
590 SetCachedUserName (uint32_t uid, const char *name, size_t name_len) argument
594 m_uid_map[uid] = const_name;
602 SetUserNameNotFound (uint32_t uid) argument
605 m_uid_map[uid] = ConstString();
/external/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp530 PlatformFreeBSD::GetUserName (uint32_t uid) argument
532 // Check the cache in Platform in case we have already looked this uid up
533 const char *user_name = Platform::GetUserName(uid);
538 return m_remote_platform_sp->GetUserName(uid);
/external/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp255 PlatformRemoteGDBServer::GetUserName (uint32_t uid) argument
258 const char *cached_user_name = Platform::GetUserName(uid);
262 if (m_gdb_client.GetUserName(uid, name))
263 return SetCachedUserName(uid, name.c_str(), name.size());
265 SetUserNameNotFound(uid); // Negative cache so we don't keep sending packets
/external/qemu/distrib/ext4_utils/src/
H A Dcontents.c235 int inode_set_permissions(u32 inode_num, u16 mode, u16 uid, u16 gid, u32 mtime) argument
243 inode->i_uid = uid;
/external/strace/
H A Dkeyctl.c230 keyctl_get_persistent(struct tcb *tcp, int uid, key_serial_t id) argument
233 tprintf(", %d, ", uid);
/external/chromium_org/chrome/browser/extensions/
H A Dmenu_manager.h69 // Since the unique ID (uid or string_uid) is parsed from API arguments,
70 // the normal usage is to set the uid or string_uid immediately after
81 // Only one of uid or string_uid will be defined.
82 int uid; member in struct:extensions::MenuItem::Id
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dpicasa_file_util_unittest.cc58 const std::string& uid, unsigned int image_files,
62 uid_(uid),
486 new TestFolder("folder-1-empty", test_date, "uid-empty", 0, 0));
488 new TestFolder("folder-2-images", test_date, "uid-images", 5, 0));
490 new TestFolder("folder-3-nonimages", test_date, "uid-nonimages", 0, 5));
492 new TestFolder("folder-4-both", test_date, "uid-both", 5, 5));
503 new TestFolder("folder-many-files", test_date, "uid-both", 50, 50));
519 base::StringPrintf("uid%05d", i), i % 5, i % 3));
533 info.uid = "albumuid";
538 albums_images[info.uid]
57 TestFolder(const std::string& name, const base::Time& timestamp, const std::string& uid, unsigned int image_files, unsigned int non_image_files) argument
[all...]
/external/chromium_org/media/audio/mac/
H A Daudio_manager_mac.cc108 CFStringRef uid = NULL; local
109 size = sizeof(uid);
117 &uid);
132 if (uid)
133 CFRelease(uid);
140 device_name.unique_id = base::SysCFStringRefToUTF8(uid);
146 if (uid)
147 CFRelease(uid);
188 base::ScopedCFTypeRef<CFStringRef> uid(
191 value.mInputData = &uid;
508 CFStringRef uid = NULL; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxerutil.cpp689 uint64 uid = 0; local
696 uid <<= 8;
720 uid |= n;
723 return uid;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h368 const unsigned int uid = id; local
369 assert(uid < size && data[id].p);
370 ids.push(uid);
371 data[uid].p = NULL;
/external/kernel-headers/original/uapi/linux/
H A Djffs2.h135 /* The uid, gid, atime, mtime and ctime members could be longer, but
149 jint16_t uid; /* The file's owner. */ member in struct:jffs2_raw_inode
/external/kernel-headers/original/uapi/rdma/
H A Dib_user_cm.h75 __u64 uid; member in struct:ib_ucm_create_id
155 __u64 uid; member in struct:ib_ucm_rep
305 __u64 uid; member in struct:ib_ucm_event_resp
/external/libcap-ng/libcap-ng-0.7/src/
H A Dcap-ng.c113 /* Setuid apps run by uid 0 don't get caps back */
569 int capng_change_id(int uid, int gid, capng_flags_t flag) argument
592 if (uid == -1 || capng_have_capability(CAPNG_EFFECTIVE, CAP_SETUID))
600 // Tell system we want to keep caps across uid change
630 // Change uid
631 if (uid != -1) {
632 rc = setresuid(uid, uid, uid);
/external/libnl/lib/netfilter/
H A Dlog_msg_obj.c379 void nfnl_log_msg_set_uid(struct nfnl_log_msg *msg, uint32_t uid) argument
381 msg->log_msg_uid = uid;
/external/lldb/include/lldb/Symbol/
H A DType.h29 SymbolFileType (SymbolFile &symbol_file, lldb::user_id_t uid) : argument
30 UserID (uid),
80 Type (lldb::user_id_t uid,
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp658 PlatformDarwin::GetUserName (uint32_t uid) argument
660 // Check the cache in Platform in case we have already looked this uid up
661 const char *user_name = Platform::GetUserName(uid);
666 return m_remote_platform_sp->GetUserName(uid);
/external/lldb/source/Symbol/
H A DBlock.cpp25 Block::Block(lldb::user_id_t uid) : argument
26 UserID(uid),
H A DType.cpp78 lldb::user_id_t uid,
90 UserID (uid),
76 Type( lldb::user_id_t uid, SymbolFile* symbol_file, const ConstString &name, uint64_t byte_size, SymbolContextScope *context, user_id_t encoding_uid, EncodingDataType encoding_uid_type, const Declaration& decl, const ClangASTType &clang_type, ResolveState clang_type_resolve_state ) argument
H A DVariable.cpp37 lldb::user_id_t uid,
48 UserID(uid),
35 Variable( lldb::user_id_t uid, const char *name, const char *mangled, const lldb::SymbolFileTypeSP &symfile_type_sp, ValueType scope, SymbolContextScope *context, Declaration* decl_ptr, const DWARFExpression& location, bool external, bool artificial ) argument
/external/lldb/source/Target/
H A DPlatform.cpp413 Platform::GetUserName (uint32_t uid) argument
415 const char *user_name = GetCachedUserName(uid);
421 if (Host::GetUserName(uid, name))
422 return SetCachedUserName (uid, name.c_str(), name.size());
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.cpp180 * @param uid - The unique ID for the instruction. This should be returned by
184 static const struct InstructionSpecifier *specifierForUID(InstrUID uid) { argument
185 return &INSTRUCTIONS_SYM[uid];
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp176 InstrUID uid) {
177 UID = uid;
249 InstrUID uid)
255 RecognizableInstr recogInstr(tables, insn, uid);
174 RecognizableInstr(DisassemblerTables &tables, const CodeGenInstruction &insn, InstrUID uid) argument
247 processInstr(DisassemblerTables &tables, const CodeGenInstruction &insn, InstrUID uid) argument
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h368 const unsigned int uid = id; local
369 assert(uid < size && data[id].p);
370 ids.push(uid);
371 data[uid].p = NULL;

Completed in 3260 milliseconds

12345678