HomeSort by relevance Sort by last modified time
    Searched refs:master (Results 176 - 200 of 268) sorted by null

1 2 3 4 5 6 78 91011

  /external/chromium/chrome/browser/extensions/
extension_startup_browsertest.cc 93 UserScriptMaster* master = browser()->profile()->GetUserScriptMaster(); local
94 if (!master->ScriptsReady()) {
98 ASSERT_TRUE(master->ScriptsReady());
user_script_master_unittest.cc 21 // Test bringing up a master on a specific directory, putting a script
76 scoped_refptr<UserScriptMaster> master(new UserScriptMaster(temp_dir_.path(),
78 master->StartScan();
94 scoped_refptr<UserScriptMaster> master(new UserScriptMaster(temp_dir_.path(),
96 master->StartScan();
user_script_master.h 67 // work, and then sends a message back to its master with a new SharedMemory*.
70 // called from, the master's thread.
81 explicit ScriptReloader(UserScriptMaster* master);
84 // Will always send a message to the master upon completion.
88 // The master is going away; don't call it back.
99 // master file
105 // Runs on the master thread.
106 // Notify the master that new scripts are available.
115 // A pointer back to our master.
119 // The message loop to call our master back on
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp 74 // TODO: Also get GeoclueVelocity but there is no master client
85 GeoclueMaster* master = geoclue_master_get_default(); local
86 GeoclueMasterClient* client = geoclue_master_create_client(master, 0, 0);
87 g_object_unref(master);
  /external/jpeg/
jdapistd.c 41 /* First call: initialize master control, select active modules */
94 /* First call: initialize master control, select active modules */
125 (*cinfo->master->prepare_for_output_pass) (cinfo);
130 while (cinfo->master->is_dummy_pass) {
149 (*cinfo->master->finish_output_pass) (cinfo);
150 (*cinfo->master->prepare_for_output_pass) (cinfo);
240 (*cinfo->master->prepare_for_output_pass) (cinfo);
381 (*cinfo->master->finish_output_pass) (cinfo);
jcapimin.c 42 /* For debugging purposes, we zero the whole master structure.
156 (*cinfo->master->finish_pass) (cinfo);
160 while (! cinfo->master->is_last_pass) {
161 (*cinfo->master->prepare_for_pass) (cinfo);
174 (*cinfo->master->finish_pass) (cinfo);
  /external/qemu/distrib/jpeg-6b/
jdapistd.c 41 /* First call: initialize master control, select active modules */
94 /* First call: initialize master control, select active modules */
125 (*cinfo->master->prepare_for_output_pass) (cinfo);
130 while (cinfo->master->is_dummy_pass) {
149 (*cinfo->master->finish_output_pass) (cinfo);
150 (*cinfo->master->prepare_for_output_pass) (cinfo);
240 (*cinfo->master->prepare_for_output_pass) (cinfo);
381 (*cinfo->master->finish_output_pass) (cinfo);
jcapimin.c 42 /* For debugging purposes, we zero the whole master structure.
156 (*cinfo->master->finish_pass) (cinfo);
160 while (! cinfo->master->is_last_pass) {
161 (*cinfo->master->prepare_for_pass) (cinfo);
174 (*cinfo->master->finish_pass) (cinfo);
  /external/bluetooth/bluez/src/
sdpd-server.c 61 static int init_server(uint16_t mtu, int master, int compat)
91 if (master) {
244 int master = flags & SDP_SERVER_MASTER; local
249 if (init_server(mtu, master, compat) < 0) {
  /external/freetype/src/truetype/
ttgxvar.h 156 FT_MM_Var* *master );
  /external/iptables/extensions/
libxt_quota.c 59 .userspacesize = offsetof(struct xt_quota_info, master),
  /external/webkit/Tools/wx/packaging/debian/
rules 7 BIULD_DIR := WebKitBuild/Debug.master
31 $(BUILD_DIR)/Debug.master/_webview.so \
  /external/bluetooth/bluez/test/
btiotest.c 264 gint sec, gboolean master)
291 BT_IO_OPT_MASTER, master,
299 BT_IO_OPT_MASTER, master,
348 gint sec, gboolean master)
373 BT_IO_OPT_MASTER, master,
381 BT_IO_OPT_MASTER, master,
491 { "master", 'm', 0, G_OPTION_ARG_NONE, &opt_master,
492 "Master role switch (incoming connections)" },
  /external/bluetooth/hcidump/parser/
csr.c 564 uint16_t handle, master, addr; local
582 frm->master = 0;
588 frm->master = 1;
594 master = CSR_U16(frm);
598 addr, master ? "master" : "slave");
599 if (!master) {
  /external/bluetooth/bluez/btio/
btio.c 60 int master; member in struct:set_opts
299 static int l2cap_set_master(int sock, int master)
308 if (master) {
324 static int rfcomm_set_master(int sock, int master)
333 if (master) {
543 uint16_t omtu, uint8_t mode, int master,
572 if (master >= 0 && l2cap_set_master(sock, master) < 0) {
626 static gboolean rfcomm_set(int sock, int sec_level, int master,
635 if (master >= 0 && rfcomm_set_master(sock, master) < 0)
    [all...]
  /external/dropbear/
svr-chansession.c 227 chansess->master = -1;
414 if (chansess->master < 0) {
424 pty_change_window_size(chansess->master, termr, termc, termw, termh);
442 if (tcgetattr(chansess->master, &termio) == -1) {
514 if (tcsetattr(chansess->master, TCSANOW, &termio) < 0) {
537 if (chansess->master != -1) {
540 if (pty_allocate(&chansess->master, &chansess->slave, namebuf, 64) == 0) {
748 if (chansess->master == -1 || chansess->tty == NULL) {
771 close(chansess->master);
833 channel->writefd = chansess->master;
    [all...]
  /external/bluetooth/hcidump/src/
csrsniff.c 145 "\tcsrsniff [-i <dev>] <master-bdaddr> [slave-bdaddr]\n");
160 bdaddr_t bdaddr, master, slave; local
192 str2ba(argv[0], &master);
  /external/chromium/chrome/browser/chromeos/
locale_change_guard.cc 28 explicit Delegate(chromeos::LocaleChangeGuard* master) : master_(master) {}
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 27 // { type master; file "db.xxx"; allow-update { 127.0.0.1; }; };
37 // type master;
  /frameworks/av/media/libstagefright/include/
OMXNodeInstance.h 41 status_t freeNode(OMXMaster *master);
89 void onObserverDied(OMXMaster *master);
  /external/libxslt/libxslt/
imports.c 58 * @master: the "master" stylesheet
59 * @style: the stylesheet being imported by the master
62 * by the master, together with any imports within that.
65 static void xsltFixImportedCompSteps(xsltStylesheetPtr master,
69 (xmlHashScanner) xsltNormalizeCompSteps, master);
70 master->extrasNr += style->extrasNr;
72 xsltFixImportedCompSteps(master, res);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
isdn.h 115 char master[10]; /* Name of Master for Bundling */ member in struct:__anon23197
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
isdn.h 115 char master[10]; /* Name of Master for Bundling */ member in struct:__anon24787
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
isdn.h 115 char master[10]; /* Name of Master for Bundling */ member in struct:__anon26299
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
main-scripts.rb 202 master = inline_grammar( <<-'END' )
210 master.compile
211 for file in master.target_files

Completed in 983 milliseconds

1 2 3 4 5 6 78 91011