Home
last modified time | relevance | path

Searched refs:proc_entry (Results 1 – 25 of 183) sorted by relevance

12345678

/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/source/myhtml/
H A Ddata_process.c32 proc_entry->tmp_str_pos_proc = \
103 proc_entry->tmp_num = 0; in myhtml_data_process_state_ampersand()
142 if(proc_entry->charef_res.is_done) { in myhtml_data_process_state_ampersand_data()
220proc_entry->tmp_num = mycore_string_chars_num_map[ u_data[offset] ] + proc_entry->tmp_num * 10; in myhtml_data_process_state_ampersand_hash_data()
256 proc_entry->tmp_num <<= 4; in myhtml_data_process_state_ampersand_hash_x_data()
273 if(proc_entry->tmp_num <= 0x9F) in myhtml_data_process_state_end()
274 proc_entry->tmp_num = replacement_character[proc_entry->tmp_num]; in myhtml_data_process_state_end()
275 else if(proc_entry->tmp_num >= 0xD800 && proc_entry->tmp_num <= 0xDFFF) in myhtml_data_process_state_end()
281 … myencoding_codepoint_to_ascii_utf_8(proc_entry->tmp_num, &str->data[proc_entry->tmp_str_pos]); in myhtml_data_process_state_end()
291 offset = proc_entry->state(proc_entry, str, data, offset, size); in myhtml_data_process()
[all …]
H A Dparser.c44proc_entry->encoding, proc_entry->emit_null_char); in myhtml_parser_token_data_to_string_lowercase()
102proc_entry->encoding, proc_entry->emit_null_char); in myhtml_parser_token_data_to_string()
157 myhtml_data_process_end(proc_entry, str); in myhtml_parser_token_data_to_string_charef()
180 myhtml_data_process_end(proc_entry, str); in myhtml_parser_token_data_to_string_charef()
237 myhtml_data_process_entry_t proc_entry; in myhtml_parser_worker() local
238 myhtml_data_process_entry_clean(&proc_entry); in myhtml_parser_worker()
240 proc_entry.encoding = tree->encoding; in myhtml_parser_worker()
243 proc_entry.emit_null_char = true; in myhtml_parser_worker()
258 myhtml_data_process_entry_t proc_entry; in myhtml_parser_worker() local
264 proc_entry.encoding = tree->encoding; in myhtml_parser_worker()
[all …]
H A Ddata_process.h54 void myhtml_data_process_entry_clean(myhtml_data_process_entry_t* proc_entry);
56 void myhtml_data_process(myhtml_data_process_entry_t* proc_entry, mycore_string_t* str, const char*…
57 void myhtml_data_process_end(myhtml_data_process_entry_t* proc_entry, mycore_string_t* str);
59 size_t myhtml_data_process_state_data(myhtml_data_process_entry_t* proc_entry, mycore_string_t* str…
60 size_t myhtml_data_process_state_ampersand(myhtml_data_process_entry_t* proc_entry, mycore_string_t…
61 size_t myhtml_data_process_state_ampersand_data(myhtml_data_process_entry_t* proc_entry, mycore_str…
62 size_t myhtml_data_process_state_ampersand_hash(myhtml_data_process_entry_t* proc_entry, mycore_str…
63 size_t myhtml_data_process_state_ampersand_hash_data(myhtml_data_process_entry_t* proc_entry, mycor…
64 size_t myhtml_data_process_state_ampersand_hash_x_data(myhtml_data_process_entry_t* proc_entry, myc…
65 void myhtml_data_process_state_end(myhtml_data_process_entry_t* proc_entry, mycore_string_t* str);
H A Dparser.h40 …yhtml_tree_t *tree, mycore_string_t* str, myhtml_data_process_entry_t* proc_entry, size_t begin, s…
41 …yhtml_tree_t *tree, mycore_string_t* str, myhtml_data_process_entry_t* proc_entry, size_t begin, s…
42 …yhtml_tree_t *tree, mycore_string_t* str, myhtml_data_process_entry_t* proc_entry, size_t begin, s…
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/util/py_lib/seqan/dox/
H A Dvalidation.py15 def validate(self, proc_entry): argument
22 def validate(self, proc_entry): argument
26 if not hasattr(proc_entry, 'signatures') or proc_entry.kind in IGNORED:
28 if not proc_entry.signatures:
36 def validate(self, proc_entry): argument
52 def validate(self, proc_entry): argument
53 if not hasattr(proc_entry, 'body') or not proc_entry.body.children:
65 def validate(self, proc_entry): argument
95 def validate(self, proc_entry): argument
107 def validate(self, proc_entry): argument
[all …]
H A Dwrite_html.py155 def toDox(proc_entry, line_length=110, in_comment=False): argument
159 result.append(proc_entry.raw_entry.getFormatted(formatter))
160 for key, lst in proc_entry.subentries.iteritems():
420 for proc_entry in doc.entries.values():
422 proc_entry.visitTextNodes(link_converter)
427 for proc_entry in doc.entries.values():
429 proc_entry.visitTextNodes(updater)
H A Dproc_doc.py313 def registerSubentry(self, proc_entry): argument
314 self.subentries.setdefault(proc_entry.kind, []).append(proc_entry)
1627 proc_entry = converter.process(raw_entry)
1630 res.addTopLevelEntry(proc_entry)
1648 proc_entry = converter.process(raw_entry)
1651 res.addSecondLevelEntry(proc_entry)
1664 proc_entry = converter.process(raw_entry)
1667 res.addVariable(proc_entry)
1677 res.addEnumValue(proc_entry)
1687 for proc_entry in res.entries.values():
[all …]
/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/include/myhtml/
H A Ddata_process.h54 void myhtml_data_process_entry_clean(myhtml_data_process_entry_t* proc_entry);
56 void myhtml_data_process(myhtml_data_process_entry_t* proc_entry, mycore_string_t* str, const char*…
57 void myhtml_data_process_end(myhtml_data_process_entry_t* proc_entry, mycore_string_t* str);
59 size_t myhtml_data_process_state_data(myhtml_data_process_entry_t* proc_entry, mycore_string_t* str…
60 size_t myhtml_data_process_state_ampersand(myhtml_data_process_entry_t* proc_entry, mycore_string_t…
61 size_t myhtml_data_process_state_ampersand_data(myhtml_data_process_entry_t* proc_entry, mycore_str…
62 size_t myhtml_data_process_state_ampersand_hash(myhtml_data_process_entry_t* proc_entry, mycore_str…
63 size_t myhtml_data_process_state_ampersand_hash_data(myhtml_data_process_entry_t* proc_entry, mycor…
64 size_t myhtml_data_process_state_ampersand_hash_x_data(myhtml_data_process_entry_t* proc_entry, myc…
65 void myhtml_data_process_state_end(myhtml_data_process_entry_t* proc_entry, mycore_string_t* str);
H A Dparser.h40 …yhtml_tree_t *tree, mycore_string_t* str, myhtml_data_process_entry_t* proc_entry, size_t begin, s…
41 …yhtml_tree_t *tree, mycore_string_t* str, myhtml_data_process_entry_t* proc_entry, size_t begin, s…
42 …yhtml_tree_t *tree, mycore_string_t* str, myhtml_data_process_entry_t* proc_entry, size_t begin, s…
/dports/devel/p5-Proc-ProcessTable/Proc-ProcessTable-0.634/os/
H A DMSWin32.c338 PROCESSENTRY32 proc_entry; in OS_get_table() local
353 proc_entry.dwSize = sizeof (proc_entry); in OS_get_table()
354 if (myProcess32First (snapshot, &proc_entry)) in OS_get_table()
360 proc = OpenProcess (PROCESS_QUERY_INFORMATION, FALSE, proc_entry.th32ProcessID); in OS_get_table()
373 proc_entry.th32ProcessID, in OS_get_table()
374 proc_entry.th32ParentProcessID, in OS_get_table()
375 proc_entry.szExeFile, in OS_get_table()
382 while (myProcess32Next (snapshot, &proc_entry)); in OS_get_table()
/dports/lang/ruby26/ruby-2.6.9/
H A Denumerator.c156 struct proc_entry { struct
247 static struct proc_entry *
1792 struct proc_entry *entry = proc_entry_ptr(proc_entry); in lazyenum_yield()
1799 struct proc_entry *entry = proc_entry_ptr(proc_entry); in lazyenum_yield_values()
1973 struct proc_entry *entry = proc_entry_ptr(proc_entry); in lazy_grep_proc()
1982 struct proc_entry *entry = proc_entry_ptr(proc_entry); in lazy_grep_iter_proc()
2012 struct proc_entry *entry = proc_entry_ptr(proc_entry); in lazy_grep_v_proc()
2021 struct proc_entry *entry = proc_entry_ptr(proc_entry); in lazy_grep_v_iter_proc()
2149 struct proc_entry *entry = proc_entry_ptr(proc_entry); in lazy_take_proc()
2242 struct proc_entry *entry = proc_entry_ptr(proc_entry); in lazy_drop_proc()
[all …]
/dports/x11/mlterm/mlterm-3.9.1/uitoolkit/xlib/
H A Dui_dnd.c423 dnd_parser_t *proc_entry; in parse() local
434 for (proc_entry = dnd_parsers; proc_entry->atomname; proc_entry++) { in parse()
435 if ((win->dnd->waiting_atom) == XInternAtom(win->disp->display, proc_entry->atomname, False)) in parse()
440 bl_debug_printf(BL_DEBUG_TAG "processing as %s\n", proc_entry->atomname); in parse()
442 if (proc_entry->parser) return (proc_entry->parser)(win, src, len); in parse()
455 dnd_parser_t *proc_entry; in choose_atom() local
471 for (proc_entry = dnd_parsers; i < 0 && proc_entry->atomname; proc_entry++) { in choose_atom()
473 bl_debug_printf(BL_DEBUG_TAG "ckecking against : %s\n", proc_entry->atomname); in choose_atom()
475 i = is_pref(XInternAtom(win->disp->display, proc_entry->atomname, False), atom_list, num); in choose_atom()
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/proc/
H A Dproc_tty.c137 if (!driver->driver_name || driver->proc_entry || in proc_tty_register_driver()
143 driver->proc_entry = ent; in proc_tty_register_driver()
153 ent = driver->proc_entry; in proc_tty_unregister_driver()
159 driver->proc_entry = NULL; in proc_tty_unregister_driver()
/dports/multimedia/libv4l/linux-5.13-rc2/fs/proc/
H A Dproc_tty.c137 if (!driver->driver_name || driver->proc_entry || in proc_tty_register_driver()
143 driver->proc_entry = ent; in proc_tty_register_driver()
153 ent = driver->proc_entry; in proc_tty_unregister_driver()
159 driver->proc_entry = NULL; in proc_tty_unregister_driver()
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/proc/
H A Dproc_tty.c137 if (!driver->driver_name || driver->proc_entry || in proc_tty_register_driver()
143 driver->proc_entry = ent; in proc_tty_register_driver()
153 ent = driver->proc_entry; in proc_tty_unregister_driver()
159 driver->proc_entry = NULL; in proc_tty_unregister_driver()
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/debug/
H A Dgdi_debug_util_win.cc320 void NOINLINE GetFirstProcess(HANDLE snapshot, PROCESSENTRY32* proc_entry) { in GetFirstProcess() argument
321 proc_entry->dwSize = sizeof(PROCESSENTRY32); in GetFirstProcess()
322 CHECK(Process32First(snapshot, proc_entry)); in GetFirstProcess()
398 PROCESSENTRY32 proc_entry = {}; in CollectChildGDIUsageAndDie() local
399 GetFirstProcess(snapshot, &proc_entry); in CollectChildGDIUsageAndDie()
405 proc_entry.th32ProcessID)); in CollectChildGDIUsageAndDie()
418 if (parent_pid != proc_entry.th32ParentProcessID) in CollectChildGDIUsageAndDie()
427 } while (Process32Next(snapshot, &proc_entry)); in CollectChildGDIUsageAndDie()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/debug/
H A Dgdi_debug_util_win.cc320 void NOINLINE GetFirstProcess(HANDLE snapshot, PROCESSENTRY32* proc_entry) { in GetFirstProcess() argument
321 proc_entry->dwSize = sizeof(PROCESSENTRY32); in GetFirstProcess()
322 CHECK(Process32First(snapshot, proc_entry)); in GetFirstProcess()
398 PROCESSENTRY32 proc_entry = {}; in CollectChildGDIUsageAndDie() local
399 GetFirstProcess(snapshot, &proc_entry); in CollectChildGDIUsageAndDie()
405 proc_entry.th32ProcessID)); in CollectChildGDIUsageAndDie()
418 if (parent_pid != proc_entry.th32ParentProcessID) in CollectChildGDIUsageAndDie()
427 } while (Process32Next(snapshot, &proc_entry)); in CollectChildGDIUsageAndDie()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/bonding/
H A Dbond_procfs.c269 bond->proc_entry = proc_create_seq_data(bond_dev->name, 0444, in bond_create_proc_entry()
271 if (bond->proc_entry == NULL) in bond_create_proc_entry()
284 if (bn->proc_dir && bond->proc_entry) { in bond_remove_proc_entry()
287 bond->proc_entry = NULL; in bond_remove_proc_entry()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/bonding/
H A Dbond_procfs.c269 bond->proc_entry = proc_create_seq_data(bond_dev->name, 0444, in bond_create_proc_entry()
271 if (bond->proc_entry == NULL) in bond_create_proc_entry()
284 if (bn->proc_dir && bond->proc_entry) { in bond_remove_proc_entry()
287 bond->proc_entry = NULL; in bond_remove_proc_entry()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/bonding/
H A Dbond_procfs.c269 bond->proc_entry = proc_create_seq_data(bond_dev->name, 0444, in bond_create_proc_entry()
271 if (bond->proc_entry == NULL) in bond_create_proc_entry()
284 if (bn->proc_dir && bond->proc_entry) { in bond_remove_proc_entry()
287 bond->proc_entry = NULL; in bond_remove_proc_entry()
/dports/multimedia/v4l_compat/linux-5.13-rc2/sound/drivers/opl4/
H A Dopl4_proc.c105 opl4->proc_entry = entry; in snd_opl4_create_proc()
111 snd_info_free_entry(opl4->proc_entry); in snd_opl4_free_proc()
/dports/multimedia/libv4l/linux-5.13-rc2/sound/drivers/opl4/
H A Dopl4_proc.c105 opl4->proc_entry = entry; in snd_opl4_create_proc()
111 snd_info_free_entry(opl4->proc_entry); in snd_opl4_free_proc()
/dports/multimedia/v4l-utils/linux-5.13-rc2/sound/drivers/opl4/
H A Dopl4_proc.c105 opl4->proc_entry = entry; in snd_opl4_create_proc()
111 snd_info_free_entry(opl4->proc_entry); in snd_opl4_free_proc()
/dports/x11-wm/mutter/mutter-41.1/src/wayland/
H A Dmeta-xwayland.c141 meta_xwayland_get_exe_from_proc_entry (const char *proc_entry) in meta_xwayland_get_exe_from_proc_entry() argument
147 exepath = g_file_read_link (proc_entry, NULL); in meta_xwayland_get_exe_from_proc_entry()
163 g_autofree char *proc_entry = NULL; in meta_xwayland_get_exe_from_pid() local
166 proc_entry = g_strdup_printf ("/proc/%i/exe", pid); in meta_xwayland_get_exe_from_pid()
167 executable = meta_xwayland_get_exe_from_proc_entry (proc_entry); in meta_xwayland_get_exe_from_pid()
175 g_autofree char *proc_entry = NULL; in meta_xwayland_get_self_exe() local
178 proc_entry = g_strdup_printf ("/proc/self/exe"); in meta_xwayland_get_self_exe()
179 executable = meta_xwayland_get_exe_from_proc_entry (proc_entry); in meta_xwayland_get_self_exe()
/dports/devel/llvm80/llvm-8.0.1.src/projects/openmp/runtime/src/
H A Dz_Linux_util.cpp2121 struct dirent *proc_entry = NULL; in __kmp_get_load_balance() local
2174 proc_entry = readdir(proc_dir); in __kmp_get_load_balance()
2175 while (proc_entry != NULL) { in __kmp_get_load_balance()
2178 if (proc_entry->d_type == DT_DIR && isdigit(proc_entry->d_name[0])) { in __kmp_get_load_balance()
2187 strcmp(proc_entry->d_name, "1") == 0); in __kmp_get_load_balance()
2191 __kmp_str_buf_cat(&task_path, proc_entry->d_name, in __kmp_get_load_balance()
2192 KMP_STRLEN(proc_entry->d_name)); in __kmp_get_load_balance()
2205 if (strcmp(proc_entry->d_name, "1") == 0) { in __kmp_get_load_balance()
2220 if (proc_entry->d_type == DT_DIR && isdigit(task_entry->d_name[0])) { in __kmp_get_load_balance()
2294 proc_entry = readdir(proc_dir); in __kmp_get_load_balance()

12345678