Home
last modified time | relevance | path

Searched defs:h (Results 1 – 25 of 1151) sorted by relevance

12345678910>>...47

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DHandlerTest.java74 MockHandler h = new MockHandler(); in testConstructor() local
101 MockHandler h = new MockHandler(); in testConstructor_Properties() local
114 MockHandler h = new MockHandler(); in testClose() local
122 MockHandler h = new MockHandler(); in testFlush() local
130 MockHandler h = new MockHandler(); in testPublish() local
138 MockHandler h = new MockHandler(); in testGetSetEncoding_Normal() local
147 MockHandler h = new MockHandler(); in testGetSetEncoding_Null() local
156 MockHandler h = new MockHandler(); in testGetSetEncoding_Unsupported() local
169 MockHandler h = new MockHandler(); in testGetSetErrorManager_Normal() local
179 MockHandler h = new MockHandler(); in testGetSetErrorManager_Null() local
[all …]
DStreamHandlerTest.java102 StreamHandler h = new StreamHandler(); in testConstructor_NoParameter_NoProperties() local
128 StreamHandler h = new StreamHandler(); in testConstructor_NoParameter_ValidProperties() local
153 StreamHandler h = new StreamHandler(); in testConstructor_NoParameter_InvalidProperties() local
177 StreamHandler h = new StreamHandler(new ByteArrayOutputStream(), in testConstructor_HasParameters_NoProperties() local
205 StreamHandler h = new StreamHandler(new ByteArrayOutputStream(), in testConstructor_HasParameters_ValidProperties() local
231 StreamHandler h = new StreamHandler(new ByteArrayOutputStream(), in testConstructor_HasParameters_InvalidProperties() local
301 StreamHandler h = new StreamHandler(aos, new MockFormatter()); in testClose_SufficientPrivilege_NormalClose() local
321 StreamHandler h = new StreamHandler(aos, new MockFormatter()); in testClose_SufficientPrivilege_Exception() local
334 StreamHandler h = new StreamHandler(aos, new MockFormatter()); in testClose_SufficientPrivilege_DirectClose() local
350 StreamHandler h = new StreamHandler(); in testClose_NoOutputStream() local
[all …]
DConsoleHandlerTest.java88 ConsoleHandler h = new ConsoleHandler(); in testConstructor_NoProperties() local
113 ConsoleHandler h = new ConsoleHandler(); in testConstructor_ValidProperties() local
137 ConsoleHandler h = new ConsoleHandler(); in testConstructor_InvalidProperties() local
156 ConsoleHandler h = new ConsoleHandler(); in testClose_SufficientPrivilege_NormalClose() local
176 ConsoleHandler h = new ConsoleHandler(); in testClose_SufficientPrivilege_Exception() local
194 ConsoleHandler h = new ConsoleHandler(); in testClose_SufficientPrivilege_DirectClose() local
212 ConsoleHandler h = new ConsoleHandler(); in testPublish_NoFilter() local
250 ConsoleHandler h = new ConsoleHandler(); in testPublish_AfterResetSystemErr() local
272 ConsoleHandler h = new ConsoleHandler(); in testPublish_WithFilter() local
313 ConsoleHandler h = new ConsoleHandler(); in testPublish_Null() local
[all …]
/external/bison/lib/
Dobstack.h205 #define obstack_base(h) ((void *) (h)->object_base) argument
209 #define obstack_chunk_size(h) ((h)->chunk_size) argument
213 #define obstack_next_free(h) ((h)->next_free) argument
217 #define obstack_alignment_mask(h) ((h)->alignment_mask) argument
220 #define obstack_init(h) \ argument
225 #define obstack_begin(h, size) \ argument
230 #define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \ argument
235 #define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \ argument
240 #define obstack_chunkfun(h, newchunkfun) \ argument
243 #define obstack_freefun(h, newfreefun) \ argument
[all …]
Dobstack.c130 # define CALL_CHUNKFUN(h, size) \ argument
135 # define CALL_FREEFUN(h, old_chunk) \ argument
153 _obstack_begin (struct obstack *h, in _obstack_begin()
200 _obstack_begin_1 (struct obstack *h, int size, int alignment, in _obstack_begin_1()
254 _obstack_newchunk (struct obstack *h, int length) in _obstack_newchunk()
331 _obstack_allocated_p (struct obstack *h, void *obj) in _obstack_allocated_p()
354 obstack_free (struct obstack *h, void *obj) in obstack_free()
/external/webkit/Source/JavaScriptCore/wtf/
DAVLTree.h179 handle h = tree_->abs.root; variable
225 handle h = tree_->abs.root; in start_iter_least() local
243 handle h = tree_->abs.root; in start_iter_greatest() local
268 handle h = get_gt(**this); variable
294 handle h = get_lt(**this); variable
337 int cmp_k_n(key k, handle h) { return tree_->abs.compare_key_node(k, h); } in cmp_k_n()
339 handle get_lt(handle h) { return tree_->abs.get_less(h); } in get_lt()
340 handle get_gt(handle h) { return tree_->abs.get_greater(h); } in get_gt()
375 handle h, child; in build() local
477 handle get_lt(handle h) { return abs.get_less(h); } in get_lt()
[all …]
/external/openssl/crypto/ec/
Dec_curve.c86 static const struct { EC_CURVE_DATA h; unsigned char data[20+24*6]; } member
112 static const struct { EC_CURVE_DATA h; unsigned char data[20+28*6]; } member
138 static const struct { EC_CURVE_DATA h; unsigned char data[20+48*6]; } member
176 static const struct { EC_CURVE_DATA h; unsigned char data[20+66*6]; } member
227 static const struct { EC_CURVE_DATA h; unsigned char data[20+24*6]; } member
253 static const struct { EC_CURVE_DATA h; unsigned char data[20+24*6]; } member
279 static const struct { EC_CURVE_DATA h; unsigned char data[20+30*6]; } member
310 static const struct { EC_CURVE_DATA h; unsigned char data[20+30*6]; } member
341 static const struct { EC_CURVE_DATA h; unsigned char data[20+30*6]; } member
373 static const struct { EC_CURVE_DATA h; unsigned char data[20+32*6]; } member
[all …]
/external/libvpx/nestegg/halloc/src/
Dhlist.h49 #define __hlist_init(h) { &hlist_null } argument
75 #define hlist_for_each(i, h) \ argument
78 #define hlist_for_each_safe(i, tmp, h) \ argument
86 static_inline void hlist_init(hlist_head_t * h) in hlist_init()
99 static_inline void hlist_add(hlist_head_t * h, hlist_item_t * i) in hlist_add()
129 static_inline void hlist_relink_head(hlist_head_t * h) in hlist_relink_head()
/external/libsepol/src/
Dhashtab.c35 hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h, in hashtab_create()
66 int hashtab_insert(hashtab_t h, hashtab_key_t key, hashtab_datum_t datum) in hashtab_insert()
103 int hashtab_remove(hashtab_t h, hashtab_key_t key, in hashtab_remove()
136 int hashtab_replace(hashtab_t h, hashtab_key_t key, hashtab_datum_t datum, in hashtab_replace()
178 hashtab_datum_t hashtab_search(hashtab_t h, const hashtab_key_t key) in hashtab_search()
198 void hashtab_destroy(hashtab_t h) in hashtab_destroy()
222 int hashtab_map(hashtab_t h, in hashtab_map()
244 void hashtab_map_remove_on_error(hashtab_t h, in hashtab_map_remove_on_error()
287 void hashtab_hash_eval(hashtab_t h, char *tag) in hashtab_hash_eval()
Davtab.c59 avtab_insert_node(avtab_t * h, int hvalue, avtab_ptr_t prev, avtab_key_t * key, in avtab_insert_node()
81 int avtab_insert(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum) in avtab_insert()
122 avtab_insert_nonunique(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum) in avtab_insert_nonunique()
154 avtab_datum_t *avtab_search(avtab_t * h, avtab_key_t * key) in avtab_search()
189 avtab_ptr_t avtab_search_node(avtab_t * h, avtab_key_t * key) in avtab_search_node()
248 void avtab_destroy(avtab_t * h) in avtab_destroy()
271 int avtab_map(avtab_t * h, in avtab_map()
294 int avtab_init(avtab_t * h) in avtab_init()
301 int avtab_alloc(avtab_t *h, uint32_t nrules) in avtab_alloc()
332 void avtab_hash_eval(avtab_t * h, char *tag) in avtab_hash_eval()
/external/v8/test/mjsunit/compiler/
Dsimple-inlining.js89 o3.h = function() { return this.x; }; function
93 TestInlineThisX({h: o3.h, x:42}); property
111 o4.h = function() { return this.x.length; }; function
115 TestInlineThisXLength({h: o4.h, x:[1,2,3]}); property
134 o5.h = function() { return this.e.y; }; function
138 TestInlineThisXY({h: o5.h, e:o6}); property
/external/linux-tools-perf/util/
Dparse-options.h112 #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } argument
113 #define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) } argument
114 #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .val… argument
115 #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), … argument
116 #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .va… argument
117 #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l)… argument
118 #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), … argument
119 #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), … argument
120 #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l),… argument
121 #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .va… argument
[all …]
/external/wpa_supplicant_8/src/wps/
Dhttpread.c152 void httpread_destroy(struct httpread *h) in httpread_destroy()
177 struct httpread *h = user_ctx; in httpread_timeout_handler() local
188 struct httpread *h, in httpread_hdr_option_analyze()
224 static int httpread_hdr_analyze(struct httpread *h) in httpread_hdr_analyze()
397 struct httpread *h = sock_ctx; in httpread_read_handler() local
741 struct httpread *h = NULL; in httpread_create() local
778 enum httpread_hdr_type httpread_hdr_type_get(struct httpread *h) in httpread_hdr_type_get()
787 char * httpread_uri_get(struct httpread *h) in httpread_uri_get()
794 int httpread_reply_code_get(struct httpread *h) in httpread_reply_code_get()
801 int httpread_length_get(struct httpread *h) in httpread_length_get()
[all …]
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
Dhttpread.c158 void httpread_destroy(struct httpread *h) in httpread_destroy()
183 struct httpread *h = user_ctx; in httpread_timeout_handler() local
194 struct httpread *h, in httpread_hdr_option_analyze()
230 static int httpread_hdr_analyze(struct httpread *h) in httpread_hdr_analyze()
403 struct httpread *h = sock_ctx; in httpread_read_handler() local
747 struct httpread *h = NULL; in httpread_create() local
784 enum httpread_hdr_type httpread_hdr_type_get(struct httpread *h) in httpread_hdr_type_get()
793 char * httpread_uri_get(struct httpread *h) in httpread_uri_get()
800 int httpread_reply_code_get(struct httpread *h) in httpread_reply_code_get()
807 int httpread_length_get(struct httpread *h) in httpread_length_get()
[all …]
/external/v8/test/mjsunit/
Dfunction-source.js34 function h() { function
41 function h() { function
Darguments-load-across-eval.js31 function testNoShadowing(x, h) { argument
48 function testNoShadowing2(x, h) { argument
66 function testShadowing(x, h) { argument
Dcall-stub.js40 var h = new Hash(); variable
59 h[nonsymbol] = function() { function
/external/iptables/libipq/
Dlibipq.c103 static ssize_t ipq_netlink_sendto(const struct ipq_handle *h, in ipq_netlink_sendto()
113 static ssize_t ipq_netlink_sendmsg(const struct ipq_handle *h, in ipq_netlink_sendmsg()
123 static ssize_t ipq_netlink_recvfrom(const struct ipq_handle *h, in ipq_netlink_recvfrom()
212 struct ipq_handle *h; in ipq_create_handle() local
260 int ipq_destroy_handle(struct ipq_handle *h) in ipq_destroy_handle()
269 int ipq_set_mode(const struct ipq_handle *h, in ipq_set_mode()
291 ssize_t ipq_read(const struct ipq_handle *h, in ipq_read()
304 struct nlmsghdr *h = (struct nlmsghdr *)buf; in ipq_get_msgerr() local
314 int ipq_set_verdict(const struct ipq_handle *h, in ipq_set_verdict()
359 int ipq_ctl(const struct ipq_handle *h, int request, ...) in ipq_ctl()
/external/chromium/chrome/browser/prefs/
Dproxy_config_dictionary_unittest.cc22 ProxyConfigHolder h; in TEST() local
35 ProxyConfigHolder h; in TEST() local
48 ProxyConfigHolder h; in TEST() local
63 ProxyConfigHolder h; in TEST() local
77 ProxyConfigHolder h; in TEST() local
/external/bluetooth/bluedroid/btif/src/
Dbtif_sock_thread.c194 static void free_thread_slot(int h) in free_thread_slot()
211 int h; in btsock_thread_init() local
229 int h = alloc_thread_slot(); in btsock_thread_create() local
251 static inline void init_cmd_fd(int h) in init_cmd_fd()
263 static inline void close_cmd_fd(int h) in close_cmd_fd()
284 int btsock_thread_add_fd(int h, int fd, int type, int flags, uint32_t user_id) in btsock_thread_add_fd()
312 int btsock_thread_post_cmd(int h, int type, const unsigned char* data, int size, uint32_t user_id) in btsock_thread_post_cmd()
345 int btsock_thread_wakeup(int h) in btsock_thread_wakeup()
360 int btsock_thread_exit(int h) in btsock_thread_exit()
383 static void init_poll(int h) in init_poll()
[all …]
/external/clang/test/CodeGen/
Dcfstring.c21 void h() { in h() function
22 static void* h = CFSTR("Goodbye, World!"); in h() local
/external/tcpdump/
Dprint-juniper.c163 juniper_ggsn_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_ggsn_print()
209 juniper_es_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_es_print()
279 juniper_monitor_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_monitor_print()
312 juniper_services_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_services_print()
346 juniper_pppoe_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_pppoe_print()
363 juniper_ether_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_ether_print()
380 juniper_ppp_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_ppp_print()
397 juniper_frelay_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_frelay_print()
414 juniper_chdlc_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_chdlc_print()
431 juniper_pppoe_atm_print(const struct pcap_pkthdr *h, register const u_char *p) in juniper_pppoe_atm_print()
[all …]
/external/chromium/chrome/browser/renderer_host/
Dweb_cache_manager_unittest.cc33 WebCacheManager* h) { in stats()
37 static void SimulateInactivity(WebCacheManager* h, int renderer_id) { in SimulateInactivity()
38 stats(h)[renderer_id].access = Time::Now() - TimeDelta::FromMinutes( in SimulateInactivity() local
43 static std::set<int>& active_renderers(WebCacheManager* h) { in active_renderers()
46 static std::set<int>& inactive_renderers(WebCacheManager* h) { in inactive_renderers()
49 static void GatherStats(WebCacheManager* h, in GatherStats()
59 static bool AttemptTactic(WebCacheManager* h, in AttemptTactic()
72 static void AddToStrategy(WebCacheManager* h, in AddToStrategy()
/external/chromium/chrome/browser/resources/shared/js/
Devent_tracker.js51 var h = { variable
67 this.listeners_ = this.listeners_.filter(function(h) { argument
91 EventTracker.removeEventListener_ = function(h) { argument
/external/blktrace/
Dstats.h103 static inline __u64 histlog2_upper_limit(int index, struct histlog2 *h) in histlog2_upper_limit()
108 static inline int histlog2_index(__u64 val, struct histlog2 *h) in histlog2_index()
117 struct histlog2 *h) in histlog2_account()
123 static inline void histlog2_merge(struct histlog2 *h, __u32 *dst, __u32 *src) in histlog2_merge()
131 static inline void histlog2_to_be(__u32 a[], struct histlog2 *h) in histlog2_to_be()
140 struct histlog2 *h) in histlog2_print()

12345678910>>...47