Searched refs:obj (Results 1 - 25 of 65) sorted by relevance

123

/fuchsia/zircon/system/ulib/zxcpp/
H A Dthread_atexit.cpp6 extern "C" int __cxa_thread_atexit_impl(void(*dtor)(void*), void* obj,
9 extern "C" int __cxa_thread_atexit(void(*dtor)(void*), void* obj, argument
12 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol);
/fuchsia/zircon/system/dev/audio/intel-hda/codecs/qemu/
H A Ddebug-logging.h19 #define LOG_EX(obj, ...) do { \
20 (obj).PrintDebugPrefix(); \
26 #define DEBUG_LOG_EX(obj, ...) do { \
28 (obj).PrintDebugPrefix(); \
35 #define VERBOSE_LOG_EX(obj, ...) do { \
37 (obj).PrintDebugPrefix(); \
/fuchsia/zircon/system/dev/audio/intel-hda/codecs/realtek/
H A Ddebug-logging.h19 #define LOG_EX(obj, ...) do { \
20 (obj).PrintDebugPrefix(); \
26 #define DEBUG_LOG_EX(obj, ...) do { \
28 (obj).PrintDebugPrefix(); \
35 #define VERBOSE_LOG_EX(obj, ...) do { \
37 (obj).PrintDebugPrefix(); \
/fuchsia/zircon/system/ulib/dispatcher-pool/
H A Ddebug-logging.h19 #define LOG_EX(obj, ...) do { \
20 (obj).PrintDebugPrefix(); \
26 #define DEBUG_LOG_EX(obj, ...) do { \
28 (obj).PrintDebugPrefix(); \
35 #define VERBOSE_LOG_EX(obj, ...) do { \
37 (obj).PrintDebugPrefix(); \
/fuchsia/zircon/system/ulib/intel-hda/codec-utils/
H A Ddebug-logging.h19 #define LOG_EX(obj, ...) do { \
20 (obj).PrintDebugPrefix(); \
26 #define DEBUG_LOG_EX(obj, ...) do { \
28 (obj).PrintDebugPrefix(); \
35 #define VERBOSE_LOG_EX(obj, ...) do { \
37 (obj).PrintDebugPrefix(); \
/fuchsia/zircon/system/dev/bus/acpi/
H A Dutil.c10 ACPI_OBJECT obj = { local
14 .Length = sizeof(obj),
15 .Pointer = &obj,
21 *out = obj.Integer.Value;
27 ACPI_OBJECT obj = { local
33 .Pointer = &obj,
H A Ddev-pwrsrc.c36 ACPI_OBJECT obj = { local
40 .Length = sizeof(obj),
41 .Pointer = &obj,
47 if (obj.Integer.Value) {
/fuchsia/zircon/system/dev/audio/intel-hda/controller/
H A Ddebug-logging.h19 #define LOG_EX(level, obj, fmt, ...) zxlogf(level, "[%s] " fmt, (obj).log_prefix(), ## __VA_ARGS__)
/fuchsia/zircon/system/dev/audio/intel-hda/dsp/
H A Ddebug-logging.h19 #define LOG_EX(level, obj, fmt, ...) zxlogf(level, "[%s] " fmt, (obj).log_prefix(), ## __VA_ARGS__)
/fuchsia/zircon/system/dev/audio/usb-audio/
H A Ddebug-logging.h19 #define LOG_EX(level, obj, fmt, ...) zxlogf(level, "[%s] " fmt, (obj).log_prefix(), ## __VA_ARGS__)
/fuchsia/zircon/third_party/ulib/ngunwind/src/mi/
H A Dmempool.c88 struct object *obj = object; local
90 obj->next = pool->free_list;
91 pool->free_list = obj;
98 char *obj; local
100 for (obj = mem; obj <= mem + size - obj_size; obj += obj_size)
101 free_object (pool, obj);
157 struct object *obj; local
167 obj
[all...]
/fuchsia/zircon/third_party/lib/acpica/generate/unix/
H A DMakefile.common22 mkdir -p obj; \
33 # Simple clean removes all .obj files, but leaves the executables
39 if [ -d "obj" ] ; then \
43 rmdir obj; \
55 if [ -d "obj" ] ; then \
59 rmdir obj; \
/fuchsia/zircon/system/utest/fbl/include/fbl/tests/intrusive_containers/
H A Dbase_test_environments.h533 for (auto& obj : container()) {
534 EXPECT_EQ(0u, obj.visited_count(), "");
535 obj.Visit();
536 EXPECT_EQ(1u, obj.visited_count(), "");
545 for (const auto& obj : container()) {
546 EXPECT_EQ(0u, obj.visited_count(), "");
547 obj.Visit();
548 EXPECT_EQ(1u, obj.visited_count(), "");
700 for (auto& obj : container()) {
701 ASSERT_EQ(0u, obj
[all...]
H A Dintrusive_hash_table_checker.h40 for (const auto& obj : container.buckets_[i]) {
41 ASSERT_EQ(HashTraits::GetHash(KeyTraits::GetKey(obj)),
H A Dsequence_container_test_environment.h130 for (const auto& obj : container()) {
132 EXPECT_EQ(objects()[i]->value(), obj.value(), "");
133 EXPECT_EQ(objects()[i], obj.raw_ptr(), "");
398 for (const auto& obj : container()) {
399 EXPECT_EQ(objects()[i], &obj, "");
400 EXPECT_EQ(objects()[i], obj.raw_ptr(), "");
401 EXPECT_EQ(i, obj.value(), "");
490 for (const auto& obj : container()) {
492 EXPECT_EQ(objects()[i], &obj, "");
493 EXPECT_EQ(objects()[i], obj
[all...]
/fuchsia/zircon/system/ulib/driver-info/include/driver-info/
H A Ddriver-info.h20 typedef zx_status_t (*di_read_func_t)(void* obj, void* data, size_t len, size_t off);
22 zx_status_t di_read_driver_info_etc(void* obj, di_read_func_t rfunc,
/fuchsia/zircon/system/ulib/fbl/include/fbl/
H A Dintrusive_container_utils.h47 static KeyType GetKey(const ObjType& obj) { return obj.GetKey(); } argument
73 static PtrType erase(ContainerType& container, ValueType& obj) { argument
75 [&obj](const ValueType& other) -> bool {
76 return &obj == &other;
89 static PtrType erase(ContainerType& container, ValueType& obj) { argument
90 return container.erase(obj);
/fuchsia/zircon/system/ulib/blktest/
H A Dblktest.cpp309 bool create_vmo_helper(int fd, test_vmo_object_t* obj, size_t kBlockSize) { argument
310 obj->vmo_size = kBlockSize + (rand() % 5) * kBlockSize;
311 ASSERT_EQ(zx_vmo_create(obj->vmo_size, 0, &obj->vmo), ZX_OK,
314 obj->buf.reset(new (&ac) uint8_t[obj->vmo_size]);
316 fill_random(obj->buf.get(), obj->vmo_size);
317 ASSERT_EQ(zx_vmo_write(obj->vmo, obj
333 write_striped_vmo_helper(fifo_client_t* client, test_vmo_object_t* obj, size_t i, size_t objs, groupid_t group, size_t kBlockSize) argument
354 read_striped_vmo_helper(fifo_client_t* client, test_vmo_object_t* obj, size_t i, size_t objs, groupid_t group, size_t kBlockSize) argument
388 close_vmo_helper(fifo_client_t* client, test_vmo_object_t* obj, groupid_t group) argument
437 test_vmo_object_t* obj; member in struct:tests::__anon888
448 test_vmo_object_t* obj = fifoarg->obj; local
594 test_vmo_object_t obj; local
631 test_vmo_object_t obj; local
669 test_vmo_object_t obj; local
731 test_vmo_object_t obj; local
[all...]
/fuchsia/zircon/kernel/object/include/object/
H A Dstate_observer.h86 StateObserver& obj) {
87 return obj.state_observer_list_node_state_;
85 node_state( StateObserver& obj) argument
H A Dpinned_memory_token_dispatcher.h36 PinnedMemoryTokenDispatcher& obj) {
37 return obj.dll_pmt_;
45 PinnedMemoryTokenDispatcher& obj) {
46 return obj.dll_quarantine_;
35 node_state( PinnedMemoryTokenDispatcher& obj) argument
44 node_state( PinnedMemoryTokenDispatcher& obj) argument
H A Djob_dispatcher.h63 JobDispatcher& obj) {
64 return obj.dll_job_raw_;
71 JobDispatcher& obj) {
72 return obj.dll_job_;
202 JobDispatcher& obj) {
203 return obj.dll_all_jobs_;
62 node_state( JobDispatcher& obj) argument
70 node_state( JobDispatcher& obj) argument
201 node_state( JobDispatcher& obj) argument
/fuchsia/zircon/system/utest/ramdisk/
H A Dramdisk.cpp685 bool create_vmo_helper(int fd, test_vmo_object_t* obj, size_t kBlockSize) { argument
686 obj->vmo_size = kBlockSize + (rand() % 5) * kBlockSize;
687 ASSERT_EQ(zx_vmo_create(obj->vmo_size, 0, &obj->vmo), ZX_OK,
690 obj->buf.reset(new (&ac) uint8_t[obj->vmo_size]);
692 fill_random(obj->buf.get(), obj->vmo_size);
693 ASSERT_EQ(zx_vmo_write(obj->vmo, obj
709 write_striped_vmo_helper(const block_client::Client* client, test_vmo_object_t* obj, size_t i, size_t objs, groupid_t group, size_t kBlockSize) argument
730 read_striped_vmo_helper(const block_client::Client* client, test_vmo_object_t* obj, size_t i, size_t objs, groupid_t group, size_t kBlockSize) argument
762 close_vmo_helper(const block_client::Client* client, test_vmo_object_t* obj, groupid_t group) argument
811 test_vmo_object_t* obj; member in struct:tests::__anon1451
822 test_vmo_object_t* obj = fifoarg->obj; local
958 test_vmo_object_t obj; local
998 test_vmo_object_t obj; local
1059 test_vmo_object_t obj; local
1140 test_vmo_object_t obj; local
1176 test_vmo_object_t obj; local
1214 test_vmo_object_t obj; local
1273 test_vmo_object_t obj; local
[all...]
/fuchsia/zircon/kernel/lib/fbl/include/fbl/
H A Darena.h153 void Delete(T* obj) { argument
154 obj->~T();
155 RawFree(obj);
/fuchsia/zircon/system/utest/dlfcn/
H A Ddlfcn.c35 void* obj = dlopen_vmo(vmo, RTLD_LOCAL); local
36 EXPECT_NONNULL(obj, "dlopen_vmo");
40 void* sym = dlsym(obj, "launchpad_create");
43 int ok = dlclose(obj);
/fuchsia/zircon/system/ulib/driver-info/
H A Ddriver-info.c53 static zx_status_t for_each_note(void* obj, di_read_func_t diread, argument
60 if (diread(obj, &eh, sizeof(eh), 0) != ZX_OK) {
75 if (diread(obj, ph, sz, eh.e_phoff) != ZX_OK) {
84 if (diread(obj, data, ph[i].p_filesz, ph[i].p_offset) != ZX_OK) {
116 static zx_status_t di_pread(void* obj, void* data, size_t len, size_t off) { argument
117 if (pread(*((int*)obj), data, len, off) == (ssize_t)len) {
124 zx_status_t di_read_driver_info_etc(void* obj, di_read_func_t rfunc, argument
131 return for_each_note(obj, rfunc,

Completed in 129 milliseconds

123