HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 126 - 150 of 6298) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/selinux/libsepol/include/sepol/
ibendports.h 4 #include <sepol/handle.h>
13 extern int sepol_ibendport_count(sepol_handle_t *handle,
18 extern int sepol_ibendport_exists(sepol_handle_t *handle,
23 extern int sepol_ibendport_query(sepol_handle_t *handle,
29 extern int sepol_ibendport_modify(sepol_handle_t *handle,
40 extern int sepol_ibendport_iterate(sepol_handle_t *handle,
ibpkeys.h 4 #include <sepol/handle.h>
14 extern int sepol_ibpkey_count(sepol_handle_t *handle,
18 extern int sepol_ibpkey_exists(sepol_handle_t *handle,
23 extern int sepol_ibpkey_query(sepol_handle_t *handle,
29 extern int sepol_ibpkey_modify(sepol_handle_t *handle,
40 extern int sepol_ibpkey_iterate(sepol_handle_t *handle,
interfaces.h 6 #include <sepol/handle.h>
13 extern int sepol_iface_count(sepol_handle_t * handle,
18 extern int sepol_iface_exists(sepol_handle_t * handle,
24 extern int sepol_iface_query(sepol_handle_t * handle,
31 extern int sepol_iface_modify(sepol_handle_t * handle,
42 extern int sepol_iface_iterate(sepol_handle_t * handle,
nodes.h 4 #include <sepol/handle.h>
13 extern int sepol_node_count(sepol_handle_t * handle,
17 extern int sepol_node_exists(sepol_handle_t * handle,
22 extern int sepol_node_query(sepol_handle_t * handle,
28 extern int sepol_node_modify(sepol_handle_t * handle,
39 extern int sepol_node_iterate(sepol_handle_t * handle,
ports.h 4 #include <sepol/handle.h>
13 extern int sepol_port_count(sepol_handle_t * handle,
17 extern int sepol_port_exists(sepol_handle_t * handle,
22 extern int sepol_port_query(sepol_handle_t * handle,
28 extern int sepol_port_modify(sepol_handle_t * handle,
39 extern int sepol_port_iterate(sepol_handle_t * handle,
  /external/selinux/libsepol/include/sepol/policydb/
hierarchy.h 35 extern int hierarchy_add_bounds(sepol_handle_t *handle, policydb_t *p);
38 extern int bounds_check_type(sepol_handle_t *handle, policydb_t *p, uint32_t child,
41 extern int bounds_check_users(sepol_handle_t *handle, policydb_t *p);
42 extern int bounds_check_roles(sepol_handle_t *handle, policydb_t *p);
43 extern int bounds_check_types(sepol_handle_t *handle, policydb_t *p);
45 extern int hierarchy_check_constraints(sepol_handle_t * handle, policydb_t * p);
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallInfo.java 31 private String handle; field in class:CallInfo
33 public CallInfo(String handle) {
34 this.handle = handle;
38 return handle;
75 destination.writeString(handle);
  /frameworks/native/libs/ui/include/ui/
DetachedBufferHandle.h 26 // A wrapper that holds a pdx::LocalChannelHandle object. From the handle, a BufferHub buffer can be
32 static std::unique_ptr<DetachedBufferHandle> Create(pdx::LocalChannelHandle handle) {
33 return std::unique_ptr<DetachedBufferHandle>(new DetachedBufferHandle(std::move(handle)));
37 pdx::LocalChannelHandle& handle() { return mHandle; } function in class:android::DetachedBufferHandle
38 const pdx::LocalChannelHandle& handle() const { return mHandle; } function in class:android::DetachedBufferHandle
45 explicit DetachedBufferHandle(pdx::LocalChannelHandle handle) : mHandle(std::move(handle)) {}
  /frameworks/native/libs/vr/libpdx/private/pdx/
message_writer.h 13 virtual Status<FileReference> PushFileHandle(const LocalHandle& handle) = 0;
15 const BorrowedHandle& handle) = 0;
16 virtual Status<FileReference> PushFileHandle(const RemoteHandle& handle) = 0;
18 const LocalChannelHandle& handle) = 0;
20 const BorrowedChannelHandle& handle) = 0;
22 const RemoteChannelHandle& handle) = 0;
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_parse.c 123 ns_initparse(const u_char *msg, int msglen, ns_msg *handle) {
127 memset(handle, 0x5e, sizeof *handle);
128 handle->_msg = msg;
129 handle->_eom = eom;
132 NS_GET16(handle->_id, msg);
135 NS_GET16(handle->_flags, msg);
139 NS_GET16(handle->_counts[i], msg);
142 if (handle->_counts[i] == 0)
143 handle->_sections[i] = NULL;
    [all...]
  /external/deqp/framework/delibs/dethread/win32/
deSemaphoreWin32.c 34 DE_STATIC_ASSERT(sizeof(deSemaphore) >= sizeof(HANDLE));
38 HANDLE handle; local
42 handle = CreateSemaphore(DE_NULL, initialValue, WIN32_SEM_MAX_VALUE, DE_NULL);
43 if (!handle)
46 DE_ASSERT((deSemaphore)handle != 0);
48 return (deSemaphore)handle;
53 HANDLE handle = (HANDLE)semaphore local
59 HANDLE handle = (HANDLE)semaphore; local
67 HANDLE handle = (HANDLE)semaphore; local
75 HANDLE handle = (HANDLE)semaphore; local
    [all...]
  /external/drm_gralloc/
gralloc_drm_handle.h 68 struct gralloc_drm_handle_t *handle = local
71 if (handle && (handle->base.version != sizeof(handle->base) ||
72 handle->base.numInts != GRALLOC_DRM_HANDLE_NUM_INTS ||
73 handle->base.numFds != GRALLOC_DRM_HANDLE_NUM_FDS ||
74 handle->magic != GRALLOC_DRM_HANDLE_MAGIC)) {
75 ALOGE("invalid handle: version=%d, numInts=%d, numFds=%d, magic=%x",
76 handle->base.version, handle->base.numInts
    [all...]
  /external/selinux/libsemanage/src/
ibendports_file.c 16 #include <semanage/handle.h>
23 static int ibendport_print(semanage_handle_t *handle,
31 if (semanage_ibendport_get_ibdev_name(handle, ibendport, &ibdev_name_str) != 0)
42 if (semanage_context_to_string(handle, con, &con_str) < 0)
52 ERR(handle, "could not print ibendport (%s) %u to stream",
59 static int ibendport_parse(semanage_handle_t *handle,
67 if (parse_skip_space(handle, info) < 0)
73 if (parse_assert_str(handle, info, "ibendportcon") < 0)
75 if (parse_assert_space(handle, info) < 0)
79 if (parse_fetch_string(handle, info, &str, ' ') < 0
    [all...]
policy_components.c 5 #include "handle.h"
15 static int clear_obsolete(semanage_handle_t * handle,
31 if (rtable->key_extract(handle, records[i], &key) < 0)
34 if (dst_dtable->exists(handle, dst->dbase, key, &exists) < 0)
38 if (src_dtable->del(handle, src->dbase, key) < 0)
45 /* INFO(handle, "boolean %s is obsolete, unsetting configured value..."); */
54 /* FIXME: handle error */
59 static int load_records(semanage_handle_t * handle,
77 if (rtable->key_extract(handle, records[i], &rkey) < 0)
81 dtable->set(handle, dbase, rkey, records[i]) < 0
    [all...]
  /external/guice/core/src/com/google/inject/internal/
ErrorHandler.java 31 void handle(Object source, Errors errors); method in interface:ErrorHandler
36 void handle(Message message); method in interface:ErrorHandler
  /external/mesa3d/src/gallium/state_trackers/vdpau/
htab.c 39 /* Make sure handle table handles match VDPAU handles. */
61 vlHandle handle = 0; local
66 handle = handle_table_add(htab, data);
68 return handle;
71 void* vlGetDataHTAB(vlHandle handle)
75 assert(handle);
78 data = handle_table_get(htab, handle);
83 void vlRemoveDataHTAB(vlHandle handle)
87 handle_table_remove(htab, handle);
  /external/selinux/libsemanage/include/semanage/
seuser_record.h 6 #include <semanage/handle.h>
14 extern int semanage_seuser_key_create(semanage_handle_t * handle,
18 extern int semanage_seuser_key_extract(semanage_handle_t * handle,
33 extern int semanage_seuser_set_name(semanage_handle_t * handle,
40 extern int semanage_seuser_set_sename(semanage_handle_t * handle,
48 extern int semanage_seuser_set_mlsrange(semanage_handle_t * handle,
53 extern int semanage_seuser_create(semanage_handle_t * handle,
56 extern int semanage_seuser_clone(semanage_handle_t * handle,
  /external/sqlite/android/
sqlite3_android.h 26 int register_android_functions(sqlite3 * handle, int uit16Storage);
28 int register_localized_collators(sqlite3* handle, const char* systemLocale, int utf16Storage);
  /external/syslinux/com32/lib/sys/
fileclose.c 42 if (fp->i.fd.handle)
43 close_file(fp->i.fd.handle);
  /external/tensorflow/tensorflow/compiler/xla/client/
global_data.h 30 // Gives ownership of the global data handle to this object.
31 GlobalData(ServiceInterface* parent, GlobalDataHandle handle);
33 // Unregisters the wrapped handle, which causes the service to
37 const GlobalDataHandle& handle() const { return handle_; } function in class:xla::GlobalData
40 GlobalDataHandle handle_; // Handle being wrapped.
  /external/tensorflow/tensorflow/core/platform/
load_library.h 25 Status LoadLibrary(const char* library_filename, void** handle);
26 Status GetSymbolFromLibrary(void* handle, const char* symbol_name,
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/tangier/
TngGrallocBuffer.cpp 23 TngGrallocBuffer::TngGrallocBuffer(uint32_t handle)
24 :GrallocBufferBase(handle)
26 initBuffer(handle);
33 void TngGrallocBuffer::resetBuffer(uint32_t handle)
35 GrallocBufferBase::resetBuffer(handle);
36 initBuffer(handle);
39 void TngGrallocBuffer::initBuffer(uint32_t handle)
41 TngIMGGrallocBuffer *grallocHandle = (TngIMGGrallocBuffer *)handle;
46 ELOGTRACE("gralloc handle is null");
  /packages/services/Car/car-lib/src/android/car/trust/
ICarTrustAgentUnlockCallback.aidl 26 void onUnlockDataReceived(in byte[] token, long handle);
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_loadso.h 55 * to the object handle (or NULL if there was an error).
61 * Given an object handle, this function looks up the address of the
65 extern DECLSPEC void *SDLCALL SDL_LoadFunction(void *handle,
71 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_loadso.h 55 * to the object handle (or NULL if there was an error).
61 * Given an object handle, this function looks up the address of the
65 extern DECLSPEC void *SDLCALL SDL_LoadFunction(void *handle,
71 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);

Completed in 1000 milliseconds

1 2 3 4 56 7 8 91011>>