Home
last modified time | relevance | path

Searched full:unique (Results 1 – 25 of 2176) sorted by relevance

12345678910>>...88

/freebsd/contrib/libucl/tests/schema/
H A DuniqueItems.json7 "description": "unique array of integers is valid",
12 "description": "non-unique array of integers is invalid",
17 "description": "numbers are unique if mathematically unequal",
22 "description": "unique array of objects is valid",
27 "description": "non-unique array of objects is invalid",
32 "description": "unique array of nested objects is valid",
40 "description": "non-unique array of nested objects is invalid",
48 "description": "unique array of arrays is valid",
53 "description": "non-unique array of arrays is invalid",
58 "description": "1 and true are unique",
[all …]
/freebsd/tests/sys/fs/fusefs/
H A Dinterrupt.cc96 * Expect a FUSE_MKDIR but don't reply. Instead, just record the unique value
107 *mkdir_unique = in.header.unique; in expect_mkdir()
113 * Expect a FUSE_READ but don't reply. Instead, just record the unique value
125 *read_unique = in.header.unique; in expect_read()
131 * Expect a FUSE_WRITE but don't reply. Instead, just record the unique value
143 *write_unique = in.header.unique; in expect_write()
241 in.body.interrupt.unique == mkdir_unique); in TEST_F()
247 out0->header.unique = mkdir_unique; in TEST_F()
255 out1->header.unique = in.header.unique; in TEST_F()
304 in.body.interrupt.unique == mkdir_unique); in TEST_F()
[all …]
H A Dbad_server.cc50 out.header.unique = 99999; // Invalid! in TEST_F()
65 out.header.unique = 0; // Asynchronous notification in TEST_F()
82 out0->header.unique = in.header.unique; in TEST_F()
90 out1->header.unique = in.header.unique; in TEST_F()
H A Dmockfs.cc124 out0->header.unique = in.header.unique; in ReturnErrno()
139 out0->header.unique = in.header.unique; in ReturnNegativeCache()
154 out0->header.unique = in.header.unique; in ReturnImmediate()
169 printf(" uid=%5u gid=%5u pid=%5u unique=%" PRIu64 " len=%u" in debug_request()
172 in.header.unique, in.header.len, buflen); in debug_request()
243 printf(" unique=%" PRIu64, in.body.interrupt.unique); in debug_request()
446 * Kyua sets pwd to a testcase-unique tempdir; no need to use in MockFS()
744 /* Verify that the ticket's unique value is actually unique. */ in audit_request()
745 if (m_uniques->find(in.header.unique) != m_uniques->end()) in audit_request()
746 FAIL() << "Non-unique \"unique\" value"; in audit_request()
[all …]
H A Ddev_fuse_poll.cc164 out.header.unique = in.header.unique; in TEST_F()
179 out.header.unique = in.header.unique; in TEST_F()
193 out.header.unique = in.header.unique; in TEST_F()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dtypeinfo119 // Unique
122 // This implementation of type_info assumes a unique copy of the RTTI for a
132 // This implementation of type_info does not assume there is always a unique
144 // This implementation of type_info does not assume always a unique copy of
149 // to be unique within the program. If the high bit is unset, then the RTTI can
150 // be assumed to be unique within the program.
152 // When comparing type_infos, if both RTTIs can be assumed to be unique, it
154 // be unique, we must perform a deep string comparison of the type names.
155 // However, if one of the RTTIs is guaranteed unique and the other one isn't,
160 // symbol, it is given hidden visibility instead and the non-unique bit is set.
[all …]
/freebsd/contrib/tcsh/
H A Ddotlock.c37 * Create a unique file. O_EXCL does not really work over NFS so we follow
40 * - make a mostly unique filename and try to create it.
41 * - link the unique filename to our target
43 * - unlink the mostly unique filename
65 * We generate a semi-unique filename, from hostname.(pid ^ usec) in create_exclusive()
76 * We try to create the unique filename. in create_exclusive()
106 * If the number of links was two (one for the unique file and one in create_exclusive()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DLockFileManager.cpp129 /// An RAII helper object ensure that the unique lock file is removed.
132 /// lock, the unique file will be removed. And if we successfully take the lock,
134 /// will remove the unique lock file. The caller should ensure there is a
177 // Create a lock file that is unique to this instance. in LockFileManager()
183 std::string S("failed to create unique file "); in LockFileManager()
189 // Write our process ID to our unique lock file. in LockFileManager()
203 // unique lock file, and fail. in LockFileManager()
214 // Clean up the unique file on signal, which also releases the lock if it is in LockFileManager()
238 // Wipe out our unique lock file (it's useless now) in LockFileManager()
286 // Since we own the lock, remove the lock file and our own unique lock file. in ~LockFileManager()
[all …]
/freebsd/lib/libsys/
H A Duuidgen.230 .Nd generate universally unique identifiers
42 universally unique identifiers (UUIDs) and writes them to the buffer
46 DCE version 1 variant of universally unique identifiers.
53 the identifier to be unique.
62 Universally unique identifiers, also known as globally unique identifiers
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBroadcaster.cpp48 void SBBroadcaster::BroadcastEventByType(uint32_t event_type, bool unique) { in BroadcastEventByType() argument
49 LLDB_INSTRUMENT_VA(this, event_type, unique); in BroadcastEventByType()
54 if (unique) in BroadcastEventByType()
60 void SBBroadcaster::BroadcastEvent(const SBEvent &event, bool unique) { in BroadcastEvent() argument
61 LLDB_INSTRUMENT_VA(this, event, unique); in BroadcastEvent()
67 if (unique) in BroadcastEvent()
/freebsd/usr.bin/getconf/
H A DMakefile10 conflicting.names unique.names unsigned_limits.names
25 conflicts: conflicting.names unique.names
26 @if test `wc -l <conflicting.names` != `wc -l <unique.names`; then \
36 unique.names: conflicting.names
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set_generate_session_id.pod38 security critical but must be unique for the server. Additionally, the session id is
42 Without a callback being set, an OpenSSL server will generate a unique
59 Since the sessions must be distinguished, session ids must be unique.
65 If the application codes e.g. a unique host id, a unique process number, and
66 a unique sequence number into the session id, uniqueness could easily be
/freebsd/sys/contrib/edk2/Include/Library/
H A DPcdLib.h475 @param[in] Guid Pointer to a 128-bit unique value that designates
686 @param Guid Pointer to a 128-bit unique value that designates
704 @param Guid Pointer to a 128-bit unique value that designates
722 @param Guid Pointer to a 128-bit unique value that designates
741 @param Guid Pointer to a 128-bit unique value that designates
760 @param Guid Pointer to a 128-bit unique value that designates
779 @param Guid Pointer to a 128-bit unique value that designates
798 @param Guid Pointer to a 128-bit unique value that designates
819 @param Guid Pointer to a 128-bit unique value that designates
839 @param Guid Pointer to a 128-bit unique value that designates
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_events/
H A Dzpool_events_duplicates.ksh120 unique=$(echo "$ereports" | uniq | wc -l)
121 log_note "$actual total $ERR $RW ereports where $unique were unique"
123 if [ $actual -gt $unique ] ; then
124 log_note "UNEXPECTED -- $((actual-unique)) duplicate $ERR $RW ereports"
/freebsd/usr.bin/uniq/tests/
H A Duniq_test.sh149 atf_test_case unique
157 atf_check_uniq --unique
167 atf_check_uniq --unique --count
168 atf_check_uniq --count --unique
223 atf_add_test_case unique
/freebsd/sys/dev/drm2/
H A Ddrm_ioctl.c49 * Copies the bus id from drm_device::unique into user space.
58 if (copy_to_user(u->unique, master->unique, master->unique_len)) in drm_getunique()
71 free(master->unique, DRM_MEM_DRIVER); in drm_unset_busid()
72 master->unique = NULL; in drm_unset_busid()
86 * Copies the bus id from userspace into drm_device::unique, and verifies that
98 if (master->unique_len || master->unique) in drm_setunique()
123 if (master->unique != NULL) in drm_set_busid()
H A Ddrm_pci.c195 master->unique = malloc(master->unique_size, DRM_MEM_DRIVER, M_NOWAIT); in drm_pci_set_busid()
196 if (master->unique == NULL) in drm_pci_set_busid()
200 len = snprintf(master->unique, master->unique_len, in drm_pci_set_busid()
227 master->unique = malloc(master->unique_size, DRM_MEM_DRIVER, M_WAITOK); in drm_pci_set_unique()
228 if (!master->unique) { in drm_pci_set_unique()
233 if (copy_from_user(master->unique, u->unique, master->unique_len)) { in drm_pci_set_unique()
238 master->unique[master->unique_len] = '\0'; in drm_pci_set_unique()
243 ret = sscanf(master->unique, "PCI:%d:%d:%d", &bus, &slot, &func); in drm_pci_set_unique()
/freebsd/sbin/nvmecontrol/
H A Dnvmecontrol.h46 #define NVME_LOGPAGE(unique, lp, vend, nam, fn, sz) \ argument
47 static struct logpage_function unique ## _lpf = { \
54 static void logpage_reg_##unique(void) __attribute__((constructor)); \
55 static void logpage_reg_##unique(void) { logpage_register(&unique##_lpf); }
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dunique.h29 // unique
50 unique(_ForwardIterator __first, _ForwardIterator __last, _BinaryPredicate __pred) { in unique() function
56 unique(_ForwardIterator __first, _ForwardIterator __last) { in unique() function
57 return std::unique(__first, __last, __equal_to()); in unique()
/freebsd/usr.bin/mktemp/
H A Dmktemp.135 .Nd make temporary file name (unique)
55 This file name is unique
66 unique letter combination.
67 The number of unique file names
80 can successfully generate a unique file name, the file
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDataFileCache.h27 /// caching code. Data can be stored and accessed using a unique string key.
62 /// Keys must be unique for any given data. This function attempts to see if
67 /// The unique string key that identifies data being cached.
70 /// A valid unique pointer to a memory buffer if the data is available, or
71 /// a unique pointer that contains NULL if the data is not available.
80 /// The unique string key that identifies data being cached.
138 /// unique idenifier like the UUID being valid.
/freebsd/sys/contrib/openzfs/man/man8/
H A Dzpool-ddtprune.837 This command prunes older unique entries from the dedup table.
43 The amount to prune can be based on a target percentage of the unique entries
44 or based on the age (i.e., every unique entry older than N days).
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/
H A Ddedup_legacy_import.ksh65 # should be four entries in the unique table
66 log_must eval "zdb -D $TESTPOOL | grep -q 'DDT-sha256-zap-unique:.*entries=4'"
98 # should be four entries in the unique table
99 log_must eval "zdb -D $TESTPOOL | grep -q 'DDT-sha256-zap-unique:.*entries=4'"
/freebsd/secure/lib/libcrypto/man/man3/
H A DSSL_CTX_set_generate_session_id.3172 security critical but must be unique for the server. Additionally, the session id is
176 Without a callback being set, an OpenSSL server will generate a unique
193 Since the sessions must be distinguished, session ids must be unique.
199 If the application codes e.g. a unique host id, a unique process number, and
200 a unique sequence number into the session id, uniqueness could easily be
/freebsd/stand/lua/
H A Dcore.lua211 local unique = {}
217 unique[default_kernel] = true
222 if unique[n] == nil then
225 unique[n] = true
269 if unique[file] == nil then
272 unique[file] = true
307 local unique = {}
323 unique[curenv] = true
328 if curenv ~= nil and unique[curenv] == nil then
331 unique[curenv] = true

12345678910>>...88