Home
last modified time | relevance | path

Searched refs:er (Results 1 – 25 of 857) sorted by relevance

12345678910>>...35

/third_party/node/deps/npm/node_modules/lockfile/test/
Dbasic.js13 try { lockFile.unlockSync('basic-lock') } catch (er) {}
14 try { lockFile.unlockSync('sync-lock') } catch (er) {}
15 try { lockFile.unlockSync('never-forget') } catch (er) {}
16 try { lockFile.unlockSync('stale-lock') } catch (er) {}
17 try { lockFile.unlockSync('watch-lock') } catch (er) {}
18 try { lockFile.unlockSync('retry-lock') } catch (er) {}
19 try { lockFile.unlockSync('contentious-lock') } catch (er) {}
20 try { lockFile.unlockSync('stale-wait-lock') } catch (er) {}
21 try { lockFile.unlockSync('stale-windows-lock') } catch (er) {}
38 lockFile.lock('contentious-lock', function(er, lock) { argument
[all …]
/third_party/node/deps/npm/lib/utils/
Derror-message.js10 function errorMessage (er) { argument
14 er.message = replaceInfo(er.message)
15 er.stack = replaceInfo(er.stack)
17 switch (er.code) {
19 short.push(['audit', er.message])
22 short.push(['audit', er.message])
25 short.push(['audit', er.message])
30 short.push(['', er])
42 const isCachePath = typeof er.path === 'string' &&
43 npm.config && er.path.startsWith(npm.config.get('cache'))
[all …]
Derror-handler.js107 }), function (er) { argument
108 if (er) {
109 log.error('error rolling back', er)
111 errorHandler(er)
114 reallyExit(er)
128 function reallyExit (er) { argument
129 if (er && !code) code = typeof er.errno === 'number' ? er.errno : 1
144 function errorHandler (er) { argument
148 er = er || new Error('Exit prior to config file resolving.')
149 console.error(er.stack || er.message)
[all …]
/third_party/node/deps/npm/node_modules/rimraf/
Drimraf.js73 options.lstat(p, function (er, stat) { argument
74 if (!er)
80 function next (er) { argument
81 errState = errState || er
86 function afterGlob (er, results) { argument
87 if (er)
88 return cb(er)
95 rimraf_(p, options, function CB (er) { argument
96 if (er) {
97 if ((er.code === "EBUSY" || er.code === "ENOTEMPTY" || er.code === "EPERM") &&
[all …]
/third_party/node/deps/npm/node_modules/chownr/
Dchownr.js18 } catch (er) {
19 if (er.code !== 'ENOENT')
20 throw er
28 } catch (er) {
29 if (er.code !== 'ENOENT')
30 throw er
36 needEISDIRHandled ? (path, uid, gid, cb) => er => {
40 if (!er || er.code !== 'EISDIR')
41 cb(er)
52 } catch (er) {
[all …]
/third_party/node/deps/npm/node_modules/lockfile/
Dlockfile.js44 process.on('uncaughtException', function H (er) { argument
53 throw er
68 try { fs.unlinkSync(path) } catch (er) {}
78 fs.open(path, 'r', function (er, fd) { argument
79 if (er) {
80 if (er.code !== 'ENOENT') return cb(er)
85 return fs.close(fd, function (er) { argument
86 return cb(er, true)
90 fs.fstat(fd, function (er, st) { argument
91 if (er) return fs.close(fd, function (er2) {
[all …]
/third_party/node/deps/npm/test/tap/
Dversion-from-git.js22 function runVersion (er) { argument
23 t.ifError(er, 'git tag ran without error')
29 function checkVersion (er) { argument
31 t.ifError(er, 'version command ran without error')
39 function checkCommit (er, log, stderr) { argument
40 t.ifError(er, 'git log ran without issue')
52 function runVersion (er) { argument
53 t.ifError(er, 'git tag ran without error')
59 function checkManifest (er) { argument
60 t.ifError(er, 'npm run version ran without error')
[all …]
Dls-production-and-dev.js31 mr({port: common.port}, function (er, s) { argument
38 function (er, c) { argument
39 if (er) throw er
49 common.npm(['ls', '--dev'], EXEC_OPTS, function (er, code, stdout) { argument
50 if (er) throw er
72 common.npm(['ls', '--only=development'], EXEC_OPTS, function (er, code, stdout) { argument
73 if (er) throw er
85 common.npm(['ls', '--only=dev'], EXEC_OPTS, function (er, code, stdout) { argument
86 if (er) throw er
98 common.npm(['ls', '--production'], EXEC_OPTS, function (er, code, stdout) { argument
[all …]
Daccess.js29 function (er) { argument
30 t.ifError(er, 'wrote package.json')
52 function (er, code, stdout, stderr) { argument
53 t.ifError(er, 'npm access')
73 function (er, code, stdout, stderr) { argument
74 t.ifError(er, 'npm access')
94 function (er, code, stdout, stderr) { argument
95 t.ifError(er, 'npm access')
116 function (er, code, stdout, stderr) { argument
117 t.ifError(er, 'npm access')
[all …]
Dconfig-credentials.js9 npmconf.load({}, function (er, conf) { argument
10 t.ifError(er, 'configuration loaded')
20 npmconf.load(common.builtin, function (er, conf) { argument
21 t.ifError(er, 'configuration loaded')
32 npmconf.load(common.builtin, function (er, conf) { argument
33 t.ifError(er, 'configuration loaded')
44 npmconf.load(common.builtin, function (er, conf) { argument
45 t.ifError(er, 'configuration loaded')
56 npmconf.load(common.builtin, function (er, conf) { argument
57 t.ifError(er, 'configuration loaded')
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
Dwps_er_ssdp.c22 struct wps_er *er = eloop_ctx; in wps_er_ssdp_rx() local
38 if (er->filter_addr.s_addr && in wps_er_ssdp_rx()
39 er->filter_addr.s_addr != addr.sin_addr.s_addr) in wps_er_ssdp_rx()
47 if (sd == er->multicast_sd) { in wps_er_ssdp_rx()
108 wps_er_ap_cache_settings(er, &addr.sin_addr); in wps_er_ssdp_rx()
109 wps_er_ap_remove(er, &addr.sin_addr); in wps_er_ssdp_rx()
123 wps_er_ap_add(er, uuid, &addr.sin_addr, location, max_age); in wps_er_ssdp_rx()
127 void wps_er_send_ssdp_msearch(struct wps_er *er) in wps_er_send_ssdp_msearch() argument
150 if (sendto(er->multicast_sd, wpabuf_head(msg), wpabuf_len(msg), 0, in wps_er_send_ssdp_msearch()
159 int wps_er_ssdp_init(struct wps_er *er) in wps_er_ssdp_init() argument
[all …]
Dwps_er.c76 wps_er_sta_event(sta->ap->er->wps, sta, WPS_EV_ER_ENROLLEE_REMOVE); in wps_er_sta_free()
99 static struct wps_er_ap * wps_er_ap_get(struct wps_er *er, in wps_er_ap_get() argument
104 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) { in wps_er_ap_get()
116 static struct wps_er_ap * wps_er_ap_get_id(struct wps_er *er, unsigned int id) in wps_er_ap_get_id() argument
119 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) { in wps_er_ap_get_id()
181 static void wps_er_ap_unsubscribed(struct wps_er *er, struct wps_er_ap *ap) in wps_er_ap_unsubscribed() argument
188 if (er->deinitializing && dl_list_empty(&er->ap_unsubscribing)) in wps_er_ap_unsubscribed()
189 wps_er_deinit_finish(er, NULL); in wps_er_ap_unsubscribed()
217 wps_er_ap_unsubscribed(ap->er, ap); in wps_er_http_unsubscribe_cb()
221 static void wps_er_ap_unsubscribe(struct wps_er *er, struct wps_er_ap *ap) in wps_er_ap_unsubscribe() argument
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
Dwps_er_ssdp.c22 struct wps_er *er = eloop_ctx; in wps_er_ssdp_rx() local
38 if (er->filter_addr.s_addr && in wps_er_ssdp_rx()
39 er->filter_addr.s_addr != addr.sin_addr.s_addr) in wps_er_ssdp_rx()
47 if (sd == er->multicast_sd) { in wps_er_ssdp_rx()
108 wps_er_ap_cache_settings(er, &addr.sin_addr); in wps_er_ssdp_rx()
109 wps_er_ap_remove(er, &addr.sin_addr); in wps_er_ssdp_rx()
123 wps_er_ap_add(er, uuid, &addr.sin_addr, location, max_age); in wps_er_ssdp_rx()
127 void wps_er_send_ssdp_msearch(struct wps_er *er) in wps_er_send_ssdp_msearch() argument
150 if (sendto(er->multicast_sd, wpabuf_head(msg), wpabuf_len(msg), 0, in wps_er_send_ssdp_msearch()
159 int wps_er_ssdp_init(struct wps_er *er) in wps_er_ssdp_init() argument
[all …]
Dwps_er.c76 wps_er_sta_event(sta->ap->er->wps, sta, WPS_EV_ER_ENROLLEE_REMOVE); in wps_er_sta_free()
99 static struct wps_er_ap * wps_er_ap_get(struct wps_er *er, in wps_er_ap_get() argument
104 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) { in wps_er_ap_get()
116 static struct wps_er_ap * wps_er_ap_get_id(struct wps_er *er, unsigned int id) in wps_er_ap_get_id() argument
119 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) { in wps_er_ap_get_id()
181 static void wps_er_ap_unsubscribed(struct wps_er *er, struct wps_er_ap *ap) in wps_er_ap_unsubscribed() argument
188 if (er->deinitializing && dl_list_empty(&er->ap_unsubscribing)) in wps_er_ap_unsubscribed()
189 wps_er_deinit_finish(er, NULL); in wps_er_ap_unsubscribed()
217 wps_er_ap_unsubscribed(ap->er, ap); in wps_er_http_unsubscribe_cb()
221 static void wps_er_ap_unsubscribe(struct wps_er *er, struct wps_er_ap *ap) in wps_er_ap_unsubscribe() argument
[all …]
/third_party/node/tools/msvs/msi/
Dcustom_actions.cc14 UINT er = ERROR_SUCCESS; in SetInstallScope() local
26 er = MsiDatabaseOpenView(hDB, query, &hView); in SetInstallScope()
27 ExitOnWin32Error(er, hr, "Failed MsiDatabaseOpenView"); in SetInstallScope()
29 er = MsiViewExecute(hView, 0); in SetInstallScope()
30 ExitOnWin32Error(er, hr, "Failed MsiViewExecute"); in SetInstallScope()
33 er = MsiViewFetch(hView, &hRecord); in SetInstallScope()
34 if (er == ERROR_NO_MORE_ITEMS) break; in SetInstallScope()
35 ExitOnWin32Error(er, hr, "Failed MsiViewFetch"); in SetInstallScope()
39 er = MsiRecordGetString(hRecord, 1, upgrade_code, &upgrade_code_len); in SetInstallScope()
40 ExitOnWin32Error(er, hr, "Failed to read UpgradeCode"); in SetInstallScope()
[all …]
/third_party/ffmpeg/libavcodec/
Dmpeg_er.c48 ERContext *er = &s->er; in ff_mpeg_er_frame_start() local
50 set_erpic(&er->cur_pic, s->current_picture_ptr); in ff_mpeg_er_frame_start()
51 set_erpic(&er->next_pic, s->next_picture_ptr); in ff_mpeg_er_frame_start()
52 set_erpic(&er->last_pic, s->last_picture_ptr); in ff_mpeg_er_frame_start()
54 er->pp_time = s->pp_time; in ff_mpeg_er_frame_start()
55 er->pb_time = s->pb_time; in ff_mpeg_er_frame_start()
56 er->quarter_sample = s->quarter_sample; in ff_mpeg_er_frame_start()
57 er->partitioned_frame = s->partitioned_frame; in ff_mpeg_er_frame_start()
59 ff_er_frame_start(er); in ff_mpeg_er_frame_start()
102 ERContext *er = &s->er; in ff_mpeg_er_init() local
[all …]
/third_party/boost/libs/geometry/test/algorithms/overlay/
Ddebug_sort_by_side_svg.hpp36 const typename Sbs::rp& er = sbs.m_ranked_points[i]; in sorted_side_map() local
37 sources.insert(er.seg_id.source_index); in sorted_side_map()
52 const typename Sbs::rp& er = sbs.m_ranked_points[i]; in sorted_side_map() local
53 mapper.add(er.point); in sorted_side_map()
68 const typename Sbs::rp& er = sbs.m_ranked_points[i]; in sorted_side_map() local
71 out << er.rank in sorted_side_map()
73 << " z=" << er.zone in sorted_side_map()
74 << " " << (er.direction == detail::overlay::sort_by_side::dir_to ? "t" : "f") in sorted_side_map()
75 << " " << er.turn_index in sorted_side_map()
76 << "[" << er.operation_index << "]"; in sorted_side_map()
[all …]
/third_party/node/deps/npm/node_modules/tar/lib/
Dunpack.js74 fs.rename(path, name, er => {
75 if (er)
76 return cb(er)
318 [ONERROR] (er, entry) { argument
322 if (er.name === 'CwdError')
323 this.emit('error', er)
325 this.warn(er.message, er)
372 stream.on('error', er => {
381 this[ONERROR](er, entry)
386 const done = er => { argument
[all …]
/third_party/node/test/parallel/
Dtest-fs-truncate.js79 fs.writeFile(filename, data, function(er) { argument
80 if (er) return cb(er);
81 fs.stat(filename, function(er, stat) { argument
82 if (er) return cb(er);
85 fs.truncate(filename, 1024, function(er) { argument
86 if (er) return cb(er);
87 fs.stat(filename, function(er, stat) { argument
88 if (er) return cb(er);
91 fs.truncate(filename, function(er) { argument
92 if (er) return cb(er);
[all …]
/third_party/node/deps/npm/node_modules/fs-minipass/
Dindex.js77 fs.open(this[_path], 'r', (er, fd) => this[_onopen](er, fd))
80 [_onopen] (er, fd) { argument
81 if (er)
82 this[_onerror](er)
100 fs.read(this[_fd], buf, 0, buf.length, null, (er, br, buf) =>
101 this[_onread](er, br, buf))
105 [_onread] (er, br, buf) { argument
107 if (er)
108 this[_onerror](er)
120 [_onerror] (er) { argument
[all …]
/third_party/node/deps/npm/node_modules/graceful-fs/
Dpolyfills.js15 } catch (er) {}
96 fs$rename(from, to, function CB (er) { argument
97 if (er
98 && (er.code === "EACCES" || er.code === "EPERM")
105 cb(er)
112 if (cb) cb(er)
123 callback = function (er, _, __) { argument
124 if (er && er.code === 'EAGAIN' && eagCounter < 10) {
144 } catch (er) {
145 if (er.code === 'EAGAIN' && eagCounter < 10) {
[all …]
/third_party/node/deps/npm/lib/
Drun-script.js29 return readJson(json, function (er, d) { argument
30 if (er && er.code !== 'ENOENT' && er.code !== 'ENOTDIR') return cb(er)
31 if (er) d = {}
39 readJson(pkgDir, function (er, d) { argument
40 if (er && er.code !== 'ENOENT' && er.code !== 'ENOTDIR') return cb(er)
41 if (er) d = {}
48 readJson(path.join(npm.localPrefix, 'package.json'), function (er, d) { argument
49 if (er && er.code !== 'ENOENT' && er.code !== 'ENOTDIR') return cb(er)
61 readJson(path.resolve(pkgdir, 'package.json'), function (er, d) { argument
62 if (er) return cb(er)
[all …]
Dlink.js26 fs.readdir(dir, function (er, files) { argument
27 cb(er, files.filter(function (f) {
72 function n (er, data) { argument
73 if (er) return cb(er, data)
91 return fs.lstat(path.resolve(pkg), function (er, st) { argument
92 if (er || !st.isDirectory()) {
101 fs.lstat(pp, function (er, st) { argument
102 if (er) {
109 return fs.realpath(pp, function (er, real) { argument
110 if (er) log.warn('invalid symbolic link', pkg)
[all …]
Dversion.js38 readPackage(function (er, data, indent, newline) { argument
41 if (er) {
43 return cb_(er)
61 ], function (er, results) { argument
62 if (er) return cb_(er)
75 git.whichAndExec(['describe', '--abbrev=0'], options, function (er, stdout) { argument
76 if (er) {
77 if (er.message.indexOf('No names found') !== -1) return cb(new Error('No tags found'))
78 return cb(er)
117 fs.readFile(packagePath, 'utf8', function (er, data) { argument
[all …]
/third_party/node/deps/npm/lib/config/
Dcore.js75 cb = once(function (er, conf) { argument
76 if (!er) {
81 fn(er, conf)
109 conf.loadPrefix(function (er) { argument
110 if (er) return cb(er)
170 function afterExtras (er) { argument
171 if (er) return cb(er)
185 function finalize (er) { argument
186 if (er) {
187 return cb(er)
[all …]

12345678910>>...35