HomeSort by relevance Sort by last modified time
    Searched full:handle (Results 1 - 25 of 6760) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
factory.h 39 // Interface for handle based allocation.
44 static Handle<FixedArray> NewFixedArray(
49 static Handle<FixedArray> NewFixedArrayWithHoles(int size);
51 static Handle<NumberDictionary> NewNumberDictionary(int at_least_space_for);
53 static Handle<StringDictionary> NewStringDictionary(int at_least_space_for);
55 static Handle<DescriptorArray> NewDescriptorArray(int number_of_descriptors);
57 static Handle<String> LookupSymbol(Vector<const char> str);
58 static Handle<String> LookupAsciiSymbol(const char* str) {
85 static Handle<String> NewStringFromAscii(
91 static Handle<String> NewStringFromUtf8
    [all...]
factory.cc 40 Handle<FixedArray> Factory::NewFixedArray(int size, PretenureFlag pretenure) {
46 Handle<FixedArray> Factory::NewFixedArrayWithHoles(int size) {
52 Handle<StringDictionary> Factory::NewStringDictionary(int at_least_space_for) {
59 Handle<NumberDictionary> Factory::NewNumberDictionary(int at_least_space_for) {
66 Handle<DescriptorArray> Factory::NewDescriptorArray(int number_of_descriptors) {
74 Handle<String> Factory::LookupSymbol(Vector<const char> string) {
79 Handle<String> Factory::NewStringFromAscii(Vector<const char> string,
84 Handle<String> Factory::NewStringFromUtf8(Vector<const char> string,
90 Handle<String> Factory::NewStringFromTwoByte(Vector<const uc16> string,
97 Handle<String> Factory::NewRawTwoByteString(int length
    [all...]
handles.h 37 // A Handle provides a reference to an object that survives relocation by
40 // When a handle is created for an object a cell is allocated in the heap.
43 class Handle {
45 INLINE(Handle(T** location)) { location_ = location; }
46 INLINE(explicit Handle(T* obj));
48 INLINE(Handle()) : location_(NULL) {}
51 // Ex. Handle<JSFunction> can be passed when Handle<Object> is expected.
52 template <class S> Handle(Handle<S> handle)
    [all...]
handles.cc 67 "Cannot create a handle without a HandleScope");
80 // If we still haven't found a slot for the handle, we extend the
81 // current handle scope by allocating a new handle block.
125 Handle<FixedArray> AddKeysFromJSArray(Handle<FixedArray> content,
126 Handle<JSArray> array) {
131 Handle<FixedArray> UnionOfKeys(Handle<FixedArray> first,
132 Handle<FixedArray> second)
438 Handle<Object> handle = GlobalHandles::Create(*result); local
    [all...]
compilation-cache.cc 65 Handle<CompilationCacheTable> GetTable(int generation);
94 Handle<JSFunction> Lookup(Handle<String> source,
95 Handle<Object> name,
98 void Put(Handle<String> source, Handle<JSFunction> boilerplate);
101 bool HasOrigin(Handle<JSFunction> boilerplate,
102 Handle<Object> name,
116 Handle<JSFunction> Lookup(Handle<String> source, Handle<Context> context)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
MobileApple80211.c 39 static int (*__Apple80211GetIfListCopy)(Apple80211Ref handle, CFArrayRef *list)
42 int Apple80211GetIfListCopy(Apple80211Ref handle, CFArrayRef *list)
44 return __Apple80211GetIfListCopy(handle, list);
48 static int (*__Apple80211BindToInterface)(Apple80211Ref handle,
51 int Apple80211BindToInterface(Apple80211Ref handle,
54 return __Apple80211BindToInterface(handle, interface);
58 static int (*__Apple80211GetInterfaceNameCopy)(Apple80211Ref handle,
61 int Apple80211GetInterfaceNameCopy(Apple80211Ref handle,
64 return __Apple80211GetInterfaceNameCopy(handle, name);
68 static int (*__Apple80211GetInfoCopy)(Apple80211Ref handle,
    [all...]
MobileApple80211.h 14 int Apple80211GetIfListCopy(Apple80211Ref handle, CFArrayRef *list);
15 int Apple80211BindToInterface(Apple80211Ref handle,
17 int Apple80211GetInterfaceNameCopy(Apple80211Ref handle,
19 int Apple80211GetInfoCopy(Apple80211Ref handle,
21 int Apple80211GetPower(Apple80211Ref handle, char *pwr);
22 int Apple80211SetPower(Apple80211Ref handle, char pwr);
26 int Apple80211Scan(Apple80211Ref handle, CFArrayRef *list,
29 int Apple80211Associate(Apple80211Ref handle, CFDictionaryRef bss,
31 int Apple80211AssociateAndCopyInfo(Apple80211Ref handle, CFDictionaryRef bss,
40 int Apple80211CopyValue(Apple80211Ref handle, int field, CFDictionaryRef arg2
    [all...]
  /external/qemu/elff/
elff_api.cc 34 elff_close(ELFF_HANDLE handle)
36 if (handle != NULL) {
37 delete reinterpret_cast<ElfFile*>(handle);
42 elff_is_exec(ELFF_HANDLE handle)
44 assert(handle != NULL);
45 if (handle == NULL) {
49 return reinterpret_cast<ElfFile*>(handle)->is_exec();
53 elff_get_pc_address_info(ELFF_HANDLE handle,
57 assert(handle != NULL && address_info != NULL);
58 if (handle == NULL || address_info == NULL) {
    [all...]
  /system/core/adb/
usb_windows.c 40 /// Handle to USB interface
43 /// Handle to USB read pipe (endpoint)
46 /// Handle to USB write pipe (endpoint)
68 /// Checks if there is opened usb handle in handle_list for this device.
71 /// Checks if there is opened usb handle in handle_list for this device.
75 /// Registers opened usb handle (adds it to handle_list).
76 int register_new_device(usb_handle* handle);
79 int recognized_device(usb_handle* handle);
98 /// Writes data to the opened usb handle
99 int usb_write(usb_handle* handle, const void* data, int len)
449 usb_handle* handle = NULL; local
    [all...]
  /system/extras/ext4_utils/
ext4_jbd2.h 42 #define ext4_journal_get_undo_access(handle, bh) __ext4_journal_get_undo_access(__func__, (handle), (bh))
43 #define ext4_journal_get_write_access(handle, bh) __ext4_journal_get_write_access(__func__, (handle), (bh))
44 #define ext4_forget(handle, is_metadata, inode, bh, block_nr) __ext4_forget(__func__, (handle), (is_metadata), (inode), (bh), (block_nr))
45 #define ext4_journal_get_create_access(handle, bh) __ext4_journal_get_create_access(__func__, (handle), (bh))
46 #define ext4_handle_dirty_metadata(handle, inode, bh) __ext4_handle_dirty_metadata(__func__, (handle), (inode), (bh)
    [all...]
  /bionic/libc/netbsd/nameser/
ns_parse.c 74 int ns_msg_getflag(ns_msg handle, int flag) {
75 return((u_int32_t)((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift);
103 ns_initparse(const u_char *msg, int msglen, ns_msg *handle) {
107 memset(handle, 0x5e, sizeof *handle);
108 handle->_msg = msg;
109 handle->_eom = eom;
112 NS_GET16(handle->_id, msg);
115 NS_GET16(handle->_flags, msg);
119 NS_GET16(handle->_counts[i], msg)
    [all...]
  /system/core/fastboot/
usb_windows.c 51 /// Handle to USB interface
54 /// Handle to USB read pipe (endpoint)
57 /// Handle to USB write pipe (endpoint)
69 int recognized_device(usb_handle* handle, ifc_match_func callback);
74 /// Writes data to the opened usb handle
75 int usb_write(usb_handle* handle, const void* data, int len);
77 /// Reads data using the opened usb handle
78 int usb_read(usb_handle *handle, void* data, int len);
80 /// Cleans up opened usb handle
81 void usb_cleanup_handle(usb_handle* handle);
321 usb_handle* handle = NULL; local
    [all...]
  /hardware/msm7k/librpc/
ops.c 16 int handle = open(router, O_RDWR, 0); local
18 if(handle < 0)
20 return handle;
23 void r_close(int handle)
25 if(close(handle) < 0) E("error: %s\n", strerror(errno));
28 int r_read(int handle, char *buf, uint32 size)
30 int rc = read((int) handle, (void *)buf, size);
46 int r_write (int handle, const char *buf, uint32 size)
48 int rc = write(handle, (void *)buf, size);
64 int r_control(int handle, const uint32 cmd, void *arg
    [all...]
  /development/simulator/wrapsim/
DevAudio.c 22 snd_pcm_t *handle; member in struct:AudioState
33 audioState->handle = NULL;
35 snd_pcm_open(&audioState->handle, "default", SND_PCM_STREAM_PLAYBACK, 0);
37 if (audioState->handle) {
40 snd_pcm_hw_params_any(audioState->handle, params);
41 snd_pcm_hw_params_set_access(audioState->handle, params, SND_PCM_ACCESS_RW_INTERLEAVED);
42 snd_pcm_hw_params_set_format(audioState->handle, params, SND_PCM_FORMAT_S16_LE);
44 snd_pcm_hw_params_set_rate_near(audioState->handle, params, &rate, NULL);
45 snd_pcm_hw_params_set_channels(audioState->handle, params, 2);
46 snd_pcm_hw_params(audioState->handle, params)
    [all...]
  /external/iproute2/include/libiptc/
libip6tc.h 20 /* Transparent handle type. */
24 int ip6tc_is_chain(const char *chain, const ip6tc_handle_t handle);
33 const char *ip6tc_first_chain(ip6tc_handle_t *handle);
34 const char *ip6tc_next_chain(ip6tc_handle_t *handle);
38 ip6tc_handle_t *handle);
42 ip6tc_handle_t *handle);
46 ip6tc_handle_t *handle);
49 int ip6tc_builtin(const char *chain, const ip6tc_handle_t handle);
54 ip6tc_handle_t *handle);
64 ip6tc_handle_t *handle);
    [all...]
  /external/iptables/include/libiptc/
libip6tc.h 20 /* Transparent handle type. */
24 int ip6tc_is_chain(const char *chain, const ip6tc_handle_t handle);
33 const char *ip6tc_first_chain(ip6tc_handle_t *handle);
34 const char *ip6tc_next_chain(ip6tc_handle_t *handle);
38 ip6tc_handle_t *handle);
42 ip6tc_handle_t *handle);
46 ip6tc_handle_t *handle);
49 int ip6tc_builtin(const char *chain, const ip6tc_handle_t handle);
54 ip6tc_handle_t *handle);
64 ip6tc_handle_t *handle);
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Debug.h 48 #define OMX_LOG_PRINT(HANDLE, STR, ARG...) \
49 (OMX_Log(HANDLE, __FILE__, __LINE__, __FUNCTION__, STR, ##ARG))
52 #define OMX_DPRINT(HANDLE, STR, ARG...) OMX_LOG_PRINT(OMX_MASK_DEBUG | HANDLE, STR, ##ARG)
53 #define OMX_TPRINT(HANDLE, STR, ARG...) OMX_LOG_PRINT(OMX_MASK_TRACE | HANDLE, STR, ##ARG)
55 #define OMX_DPRINT(HANDLE, STR, ARG...)
56 #define OMX_TPRINT(HANDLE, STR, ARG...)
60 #define OMX_DENTER(handle) OMX_TPRINT((handle), "+++ENTERING"
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/win32/
win_ce_semaphore.h 4 HANDLE hEvent;
5 HANDLE hMutex;
6 HANDLE hSemph;
  /external/iproute2/include/
dlfcn.h 22 static inline void *dlsym(void *handle, const char *sym)
24 if (handle != _FAKE_DLFCN_HDL)
34 static inline int dlclose(void *handle)
36 return (handle == _FAKE_DLFCN_HDL) ? 0 : 1;
  /frameworks/base/core/java/android/view/
package.html 3 Provides classes that expose basic user interface classes that handle
  /frameworks/base/graphics/java/android/graphics/
package.html 4 rectangles that let you handle drawing to the screen directly.
  /external/bluetooth/bluez/src/
sdpd-database.c 49 uint32_t handle; member in struct:__anon1779
56 * and the service record handle is the sort key
68 return rec1->handle - rec2->handle;
81 return rec1->handle - rec2->handle;
116 sdp_record_remove(item->record->handle);
175 SDPDBG("with handle : 0x%x", rec->handle);
184 dev->handle = rec->handle
302 uint32_t handle = 0x10000; local
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_rights_manager.c 22 static int32_t drm_getString(uint8_t* string, int32_t len, int32_t handle)
27 if (DRM_FILE_FAILURE == DRM_file_read(handle, &string[i], 1))
37 static int32_t drm_putString(uint8_t* string, int32_t handle)
44 if (DRM_FILE_FAILURE == DRM_file_write(handle, &string[i], 1))
60 int32_t handle; local
77 &handle);
82 &handle);
83 DRM_file_write(handle, (uint8_t *)"0\n", 2);
84 DRM_file_close(handle);
88 &handle);
160 int32_t handle; local
258 int32_t handle; local
387 int32_t handle; local
448 int32_t handle; local
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteDatabase.cpp 100 sqlite3 * handle = NULL; local
117 err = sqlite3_open_v2(path8, &handle, sqliteFlags, NULL);
119 LOGE("sqlite3_open_v2(\"%s\", &handle, %d, NULL) failed\n", path8, sqliteFlags);
120 throw_sqlite3_exception(env, handle);
130 err = sqlite3_busy_timeout(handle, 1000 /* ms */);
132 LOGE("sqlite3_busy_timeout(handle, 1000) failed for \"%s\"\n", path8);
133 throw_sqlite3_exception(env, handle);
139 err = sqlite3_prepare_v2(handle, integritySql, -1, &statement, NULL);
141 LOGE("sqlite_prepare_v2(handle, \"%s\") failed for \"%s\"\n", integritySql, path8);
142 throw_sqlite3_exception(env, handle);
197 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle); local
209 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle); local
217 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle); local
249 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle); local
297 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle); local
305 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle); local
313 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle); local
327 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle); local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/loadso/os2/
SDL_sysloadso.c 38 HMODULE handle = NULL; local
40 APIRET ulrc = DosLoadModule(buf, sizeof (buf), (char *) sofile, &handle);
43 if ((ulrc != NO_ERROR) || (handle == NULL))
46 return((void *) handle);
49 void *SDL_LoadFunction(void *handle, const char *name)
53 APIRET ulrc = DosQueryProcAddr((HMODULE)handle, 0, (char *)name, &symbol);
55 loaderror = "Invalid module handle";
65 void SDL_UnloadObject(void *handle)
67 if ( handle != NULL )
68 DosFreeModule((HMODULE) handle);
    [all...]

Completed in 220 milliseconds

1 2 3 4 5 6 7 8 91011>>