Searched defs:object (Results 1 - 8 of 8) sorted by relevance

/system/bt/osi/test/
H A Dreactor_test.cpp79 reactor_object_t *object; member in struct:__anon773
84 reactor_unregister(arg->object);
94 arg.object = reactor_register(reactor, fd, &arg, unregister_cb, NULL);
109 reactor_object_t *object = reactor_register(reactor, fd, NULL, NULL, NULL); local
112 reactor_unregister(object);
/system/bt/osi/src/
H A Dreactor.c53 reactor_t *reactor; // the reactor instance this object is registered with.
54 pthread_mutex_t lock; // protects the lifetime of this object and all variables.
86 LOG_ERROR(LOG_TAG, "%s unable to allocate object invalidation list.", __func__);
139 reactor_object_t *object = local
142 object->reactor = reactor;
143 object->fd = fd;
144 object->context = context;
145 object->read_ready = read_ready;
146 object->write_ready = write_ready;
147 pthread_mutex_init(&object
167 reactor_change_registration(reactor_object_t *object, void (*read_ready)(void *context), void (*write_ready)(void *context)) argument
258 reactor_object_t *object = (reactor_object_t *)events[j].data.ptr; local
[all...]
/system/connectivity/shill/binder/
H A Dbinder_control.cc89 // Binder manager object registration is performed synchronously, and
188 AdaptorInterface* BinderControl::CreateAdaptor(Object* object) { argument
189 return new Adaptor(object, to_string(next_unique_binder_adaptor_id_++));
/system/connectivity/shill/dbus/
H A Dchromeos_dbus_control.cc132 AdaptorInterface* ChromeosDBusControl::CreateAdaptor(Object* object) { argument
133 return new Adaptor(adaptor_bus_, object);
/system/update_engine/common/
H A Dtest_utils.h113 // Class to unmount FS when object goes out of scope
221 // This is a simple Action class for testing. It feeds an object into
255 // This is a simple Action class for testing. It receives an object from
272 const T& object() const { return object_; } function in class:chromeos_update_engine::ObjectCollectorAction
/system/tools/aidl/
H A Dast_java.h101 Expression* object; member in struct:android::aidl::java::FieldVariable
105 FieldVariable(Expression* object, const std::string& name);
/system/tpm/attestation/common/
H A Dtpm_utility_v1.cc210 TPM_LOG(ERROR, result) << __func__ << ": Failed to create object.";
294 // Create a PCRS object which holds the value of PCR0.
310 // Create a ENCDATA object to receive the sealed data.
358 // Create an ENCDATA object with the sealed value.
482 // Create a hash object to hold the digest.
489 TPM_LOG(ERROR, result) << __func__ << ": Failed to create hash object.";
584 // and we need to get it manually. Once it's in the key object, we don't need
662 TSS_HOBJECT object,
668 TSS_RESULT result = Tspi_GetAttribData(object, flag, sub_flag, &length,
671 TPM_LOG(ERROR, result) << __func__ << "Failed to read object attribut
661 GetDataAttribute(TSS_HCONTEXT context, TSS_HOBJECT object, TSS_FLAG flag, TSS_FLAG sub_flag, std::string* data) argument
[all...]
/system/vold/
H A Dcryptfs.c288 /* This signs the given object using the keymaster key. */
290 const unsigned char *object,
327 // object size. However, it's still broken (but not unusably
330 memcpy(to_sign + 1, object, min(RSA_KEY_SIZE_BYTES - 1, object_size));
331 SLOGI("Signing safely-padded object");
289 keymaster_sign_object(struct crypt_mnt_ftr *ftr, const unsigned char *object, const size_t object_size, unsigned char **signature, size_t *signature_size) argument

Completed in 333 milliseconds